JPA3 데이터 변경 알림 - @EntityListeners spring 의 data-jpa 사용시 데이터 변경시 알림을 받는 방법이 있다. EntityListener 클래스를 만들고 public class DataDtoListener { @PostLoad public void postLoad(DataDto dto) { log.info("post load: {}", dto); } @PrePersist public void prePersist(DataDto dto) { log.info("pre persist: {}", dto); } @PostPersist public void postPersist(DataDto dto) { log.info("post persist: {}", dto); } @PreUpdate public void preUpdate(DataDto dt.. 2020. 2. 11. [spring-boot-data-rest] How to expose IDs for all spring data rest 사용시 일괄적용으로 @ID 컬럼을 함께 데이터로 내보내고 싶을 때 나는 아래의 코드를 사용한다. Append configuration file to spring-configuration. import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.data.rest.core.config.RepositoryRestConfiguration;import org.springframework.data.rest.webmvc.config.RepositoryRestConfigurer;import org.s.. 2020. 2. 1. [spring-boot-starter-data-jpa] with java1.6 edit pom.xml 7.0.59 2.6.7 ........ org.jboss.spec.javax.transaction jboss-transaction-api_1.2_spec 1.0.0.Final org.springframework.boot spring-boot-starter-data-jpa javax.transaction javax.transaction-api .......... 2020. 2. 1. 이전 1 다음