Kotlin2 생성시간, 수정시간 자동화(JPA Auditing) 1. BaseTimeEntity 클래스 생성 kotlin 코드 @MappedSuperclass @EntityListeners(AuditingEntityListener::class) abstract class BaseTimeEntity(@CreatedDate var createdDate: LocalDateTime? = null, @LastModifiedDate var modifiedDate: LocalDateTime? = null) java 코드 @Getter @MappedSuperclass @EntityListeners(AuditingEntityListener.class) public abstract class BaseTimeEntity { @CreatedDate private LocalDateTim.. 2019. 10. 22. 안드로이드 단말기 고유 값 구하기 안드로이드 단말기 고유 값, 기기 고유 값, 단말기 아이디 값, 기기 아이디 값 구하기 var ANDROID_ID : String = Settings.Secure.getString(applicationContext.contentResolver, Settings.Secure.ANDROID_ID) 2019. 7. 16. 이전 1 다음