업데이트 :: 2018.08.07 프로파일 (profile)클래스레벨메서드레벨프로파일 선택프로파일 (profile)설정 파일을 특정 환경이나 목적에 맞게 선택적으로 사용할 수 있도록 그룹화클래스레벨자바기반 (@Profile 사용)@Configuration @Profile("dev") public class DevConfig { } @Configuration @Profile("test") public class TestConfig { } @Configuration @Profile("prod") public class ProductionConfig { } XML 기반 (profile="") 애너테이션 기반@Component @Profile("dev") public class DummyUserRepositor..