반응형 EntityListeners1 Entity 에서 date관련 annotation 스프링에서 제공하는 어노테이션 중에 아래와 같은 어노테이션이 있다. import org.springframework.data.annotation.CreatedDate; import org.springframework.data.annotation.LastModifiedDate; import org.springframework.data.jpa.domain.support.AuditingEntityListener; 만약 entity 에서 새로운 데이터를 생성할때 createdDate 와 LastModifyDate라는 컬럼이 있다고 가정해 본다면 결국 LocalDate.now() 라는 값으로 set을 해주며 builder를 하고 다양한 방법으로 modify 할때 LastModifyDate 컬럼을 현재 시간으로 s.. 2022. 12. 11. 이전 1 다음 반응형