사용자 도구

사이트 도구


springframework:profile

Spring Framework Profile

Profile Annotation

프로필별로 Package 탐색으로 생성되는 Spring Bean 지정을 자동화하기.

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Profile("dev")
public @interface Dev {
}
 
 
// dev 프로필에서만 생성되는 빈
@Dev
@Component
public class SomeComponent {
 ...
}
springframework/profile.txt · 마지막으로 수정됨: 2013/11/27 11:45 저자 kwon37xi