@Profile
-
스프링 프로파일 (Profile)SPRING 2020. 4. 14. 00:37
프로파일 - 빈들의 그룹 - Environment의 역할은 활성화할 프로파일 확인 및 설정 프로파일 USECASE - 테스트 환경에서는 A라는 빈을 사용하고, 운영서버에서는 B라는 빈을 사용하고 싶다. 프로파일 정의하기 - 클래스에 정의 @Configuration @Profile("test") @Conponent @Profile("test") - 메소드에 정의 @Bean @Profile("test") 아래와 같이 @Repository 어노테이션을 붙이지 않으면 ComponentScan에서 스캔을 통해 Bean 객체 등록이 되지 않는다. 1 2 3 4 5 6 7 8 9 10 11 12 package com.example.demo; import org.springframework.stereotype.Repo..