首页 > 代码库 > Spring Boot教程7——Profile
Spring Boot教程7——Profile
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
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。