[Spring] @PostConstruct 내부에서 @Bean 메서드 호출로 인해 발생하는 circular dependencies 문제 해결하기
1. @PostConstruct 내부에서 @Bean 메서드 호출로 인해 발생하는 circular dependencies 문제 해결하기[ 문제 상황 공유 ]예를 들어 다음과 같은 코드가 있다고 하자.@Configuration@Slf4jpublic class ProfileConfiguration { @Value("spring.profiles.active") private String profile; @PostConstruct void init() { ServerProfile serverProfile = serverProfile(); if (serverProfile != null) { log.info("Using server profile: {..
Spring
2024. 9. 3. 10:00