码迷,mamicode.com
首页 > 编程语言 > 详细

Spring Boot教程7——Profile

时间:2016-09-23 14:48:24      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:

Profile为开发环境和生产环境下使用不同的配置(如:数据库的配置)提供了支持。

1.新建一个示例Bean

如DemoBean,和普通Bean一样(可根据构造函数的传参不同,提供不同的数据库配置);

package com.wisely.highlight_spring4.ch2.profile;


public class DemoBean {

    private String content;

    public DemoBean(String content) {
        super();
        this.content = content;
    }

    public String getContent() {
        return content;
    }

    public void setContent(String content) {
        this.content = content;
    }
    
}

2.配置类:

@Configuration
public class ProfileConfig{
    @Bean
    @Profile("dev")//开发环境
    public DemoBean devDemoBean(){
        return new DemoBean("from development profile");
    }
    
    @Bean
    @Profile("prod")//生产环境
    public DemoBean prodDemoBean(){
        return new DemoBean("from production profile");
    }
}

3.运行类(如java的Main方法中):

public class Main{
    public static void main(String[] args){
        AnnotationConfigApplicationContext context=new AnnotationConfigApplicationContext();
        
        context.getEnvironment().setActiveProfiles("prod");//将活动的Profile设置为生产环境
        context.register(ProfileConfig.class);//后置注册Bean配置类,不然会报Bean未定义的错误
        context.refresh();//刷新容器
        
        DemoBean demoBean=context.getBean(DemoBean.class);
        
        System.out.println(demoBean.getContent());
        
        context.close();
    }
}

Spring Boot教程7——Profile

标签:

原文地址:http://www.cnblogs.com/quickcodes/p/Spring-Boot-jiao-cheng7Profile.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!