Spring Profile Test

2018-01-13  本文已影响0人  风雨楼兰

类似于Maven Profile,通过设置参数区分不同环境加载不同的类或资源文件

@Configuration
public class App
{
    public static void main( String[] args )
    {
        AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext();
        ctx.getEnvironment().setActiveProfiles("dev");
        ctx.scan("SpringTest");
        ctx.refresh();
        UserService service = ctx.getBean(UserService.class);
        System.out.println(service.getName());
    }
    @Bean
    @Profile("dev")
    public UserService userService(){
        UserService service = new UserService();
        service.setName("dev bean");
        return service;
    }
    @Bean
    @Profile("prod")
    public UserService userService2(){
        UserService service = new UserService();
        service.setName("prod bean");
        return service;
    }
}
上一篇下一篇

猜你喜欢

热点阅读