반응형
jpa에서 @CreateDate는 DB에 insert를 할 때 자동으로 현재 시간을 넣어주는 annotation입니다.
보통 이것을 사용할 때 아래와 같이 사용하는데요
@Getter
@Setter
@Entity
@EntityListeners(AuditingEntityListener.class)
public class User {
/* 생략 */
@CreateDate
private LocalDateTime createDate;
}
이렇게 했는데 @CreateDate가 동작하지 않는다면
Configuration class에 @EnableJpaAuditing annotation을 추가하면 됩니다.
728x90
반응형
'Database ( DB ) > JPA, Querydsl' 카테고리의 다른 글
Spring JPA selecting specific columns (0) | 2020.12.20 |
---|---|
No identifier specified for entity (0) | 2020.12.19 |
querydsl에서 select에 string 사용 (0) | 2019.08.12 |
[querydsl] subquery alias (0) | 2019.07.23 |
[Querydsl] 동적으로 where 만들기 (0) | 2019.07.18 |