Notice
Recent Posts
Recent Comments
Link
목록auditing (1)
개발 무지렁이

@SpringBootApplication: 스프링부트의 모든 설정을 관리할 때 @EnableJpaAuditing: JPA Audit이란 기능 활성화할 때 (시간에 대해서 자동으로 값을 넣어주는 기능) @EntityListeners(AuditingEntityListener.class): @CreatedDate, @LastModifiedDate..을 탐색해 엔티티변경 시 자동 업데이트해주는 기능을 수행하는 리스너를 등록할 때 @Bean: Bean을 생성할 때(❓ Bean이란: IoC컨테이너 내부에서 관리하는 객체) @Configuration: 자바클래스를 설정파일로 만들 때 (Bean을 등록할 수 있다.) @EnableWebSecurity: 스프링 시큐리티를 활성화할 때 @EnableGlobalMethodS..
Backend/스프링부트
2022. 12. 31. 14:04