[SpringBoot] JPA, 시간 적용하기
- Web/SpringBoot
- 2022. 12. 4.
JPA, 시간 Default 적용하기
시간 설정하는 방법
SpringBoot 시작할 때, @EnableJpaAuditing을 설정한다.
@Entity에도 설정을 해야 한다.
@EntityListeners(AuditingEntityListener.class)를 적용한다.
@Column에는 화면과 같이 설정을 한다.
@CreatedDate와 @LastModifiedDate는 Insert일 경우 등록된다.
@LastModifiedDate는 해당 Entity일 경우 실행된다.
해당 JPA를 Insert 할 경우, 다음과 같이 등록된 것을 확인할 수 있다.
반응형
'Web > SpringBoot' 카테고리의 다른 글
[SpringBoot] Could not resolve all files for configuration compileClasspath (0) | 2023.01.27 |
---|---|
[SpringBoot] JPA, NotNull 처리하기 - Default 적용 방법 (0) | 2022.12.04 |
[SpringBoot] JSP 자동 업데이트 (0) | 2022.09.26 |
[SpringBoot] JSP 연결하기 (0) | 2022.09.25 |
[SpringBoot] Logback 설정하기 (0) | 2022.06.27 |