<转载>Spring中profile的配置方式

<转载>Spring中profile的配置方式
原作地址:https://blog.csdn.net/u011230736/article/details/77715968

环境配置类注解的使用场景在于:有时候你的开发环境所使用的bean和测试环境以及生产环境不太一样,一般处理这类问题 可能需要人工处理,你可能会在环境迁移的时候手动去掉其他环境的注入标识,费时且容易出错。

举一个例子:

数据库配置,多个环境的数据库配置肯定不一样,datasource类bean需要手动去切换,如果项目有多数据源 那就更麻烦了。也可能在开发阶段,我需要一个嵌入式的Hypersonic数据库来产生调试数据,但在生产阶段,我就无须再这么做了。

而profile以及更高级的条件化装配机制,正是解决上诉问题的好方法。

在spring3.1版本引入了bean profile功能,请确保你的spring高于此版本

基于profile机制,你无须再单独构建不同的环境,且更改环境不需要重新编译你的war包,因为profile是运行时再来决定该创建哪些bean和不该创建哪些bean。

下面介绍如何使用profile

简而言之就是,首先你需要将不同bean定义整理到一个或多个profile中去,在应用部署时,决定哪个profile处于激活(active)状态。

@profile注解可以和@bean与@conponent联合使用,例如:

package com.csnt.scdp.bizmodules.interceptors;

import com.csnt.scdp.bizmodules.attributes.CommonAttribute;
import com.csnt.scdp.framework.helper.SessionFactoryHelper;
import org.aspectj.lang.annotation.After;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.beans.factory.config.ConfigurableBeanFactory;
import org.springframework.context.annotation.Profile;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Component;

@Aspect
@Scope(ConfigurableBeanFactory.SCOPE_PROTOTYPE)
@Profile("dev")
@Component
public class AnnotationSessionAop {
private String currentSessionFactory;
}

当@Profile加在bean的类文件上时,该bean会在名为"dev"的环境激活时创建。

当然如果你采用javaConfig来配置IOC的话,@Profile也可以加在你的配置类上,此时"dev"环境激活时,配置类所管理的bean才会被创建

在Spring3.2时,@Profile可以用在方法级别上

例如在javaConfig配置类中,使用构造器注入时,在方法上加入@Profile。这个效果和使用类自动扫描注入时加在待注入的bean类上是一样的。

需要注意的是,没有使用profile管理的bean,自始至终都会被创建,与profile的激活没有关系

如果你的spring是基于XML来配置的话,可以通过<eans>元素的profile属性来配置,例如

<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd"
profile="dev">
</beans>
<beans>中的profile属性也可嵌套使用,例如

<beans xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.springframework.org/schema/beans"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd">
<beans profile="dev">
<bean id="dataSource#1" class="bitronix.tm.resource.jdbc.PoolingDataSource" init-method="init" destroy-method="close">
....
</bean>
</beans>
</beans>

配置好profile之后,下一步则是激活profile,通过设置spring.profiles.active和spring.profiles.default属性,前者优先级会高于后者。且只会存在一个值
有多种方式可以设置该属性:

1.作为DispatcherServlet的初始化参数

2.作为WEB应用上下文参数

3.作为JNDI条目

4.作为环境变量

5.作为JVM的系统属性

6.在集成测试类上,使用@ActiveProfiles注解(需要spring集成测试环境)

例如第一种配置方式,在web.xml中配置下列代码:(在DispatcherServlet中加入参数)

<servlet>
<servlet-name>scdp-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>spring.profiles.default</param-name>
<param-value>dev</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>

第二种配置方式,在web.xml中配置下列代码:(在web context上下文中配置参数)

<context-param>
<param-name>spring.profiles.default</param-name>
<param-value>dev</param-value>
</context-param>

可以在param-value 启动多个环境,名称用逗号分隔即可

第三种,如果使用javaConfig配置的话,则在AbstractAnnotationConfigDispatcherServletInitializer的子类里 重写onStartup方法,如下:

@Override
public void onStartup(ServletContext servletContext) throws ServletException {
super.onStartup(servletContext);
servletContext.setInitParameter("spring.profiles.active", "live");

    //Set multiple active profile
    //servletContext.setInitParameter("spring.profiles.active", "dev, testdb");
}

亦或是重写createRootApplicationContext方法,在context创建时将环境变量传入:

  //如果RootApplicationContext需要加载带有@Profile的bean时,例如spring的ApplicationContext配置类
@Override
protected WebApplicationContext createRootApplicationContext() {

    WebApplicationContext context =
                 (WebApplicationContext)super.createRootApplicationContext();
        ((ConfigurableEnvironment)context.getEnvironment()).setActiveProfiles("live");

    //Set multiple active profiles
    //((ConfigurableEnvironment)context.getEnvironment())
            //          .setActiveProfiles(new String[]{"live", "testdb"});

        return context;

}

//如果ServletApplicationContext需要加载带有@Profile的bean时,例如springMVC的配置类
/*
@Override
protected WebApplicationContext createServletApplicationContext() {
    WebApplicationContext context =
                 (WebApplicationContext)super.createServletApplicationContext();
        ((ConfigurableEnvironment)context.getEnvironment()).setActiveProfiles("dev");
        return context;
}*/

在用到ApplicationContext的单元测试用例中,用 @ActiveProfiles定义
Java代码
@ContextConfiguration(locations = { "/....xml" })
@ActiveProfiles("dev")
public class AccountDaoTest extends SpringTxTestCase {
}
<转载>Spring中profile的配置方式
原作地址:https://blog.csdn.net/u011230736/article/details/77715968

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,029评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,395评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,570评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,535评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,650评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,850评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,006评论 3 408
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,747评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,207评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,536评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,683评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,342评论 4 330
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,964评论 3 315
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,772评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,004评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,401评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,566评论 2 349