spring–Profile
一、什么是Profile?
Profile就像一个bean的逻辑组,只有当Profile被激活的时候才能,将对应的bean加载到Spring容器中,使用这个就像将bean进行分组,有选择的加载被激活的组中bean,使bean的管理更加细致。
二、怎样配置profile bean呢?
在spring3.1版本中才引入了spring profile的功能, 使用profile的前提就是将不同的bean整合到一个或多个profile中,在将应用部署到环境时,确保每一个profile处于激活状态
我们在配置java的使用,可以通过注解@Profile指定该bean属于哪个profile,假设我么定义了一个Test类,@Profile注解是应用在类上面的,这样会告诉spring这个配置类中的bean只有在myTest这个profile激活时才能创建,如果没有激活,直接忽略带@Bean注解的方法
@Profile("myTest")
public class Test{
// 中间有含有@Bean的方法
}
从spring3.2开始,@Profile注解可以使在方法上使用,这样就能把两个bean的声明放入同一个配置类中了
// 举个例子
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Profile;
@Configuration
public class ProfileTest {
@Bean(destroyMethod = "shutdown")
@Profile("test1") // 为test1 profile装配的bean
public String forTest1(){
return "这是给test1的"
}
@Bean(destroyMethod = "shutdown")
@Profile("test2") // 为test2 profile装配的bean
public String forTest2(){
return "这是给test2的"
}
}
—-在xml中配置Profile
通过设置bean元素的profile属性来配置profile bean,例如 我们添加一个DataSource
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/context/spring-beans.xsd">
<beans profile="test1">
<!--write information-->
</beans>
<beans profile="test2">
<!-- write information-->
</beans>
<!--可以继续通过<beans>指定更多的profile-->
</beans>
<!--当然你也可以将每个bean都定义在单独的xml文件中-->
三、怎样激活profile呢?
两个属性:spring.profiles.active和spring.profiles.default ,设置了spring.profiles.active,这个值就可以确定哪个profile是激活的,没有设置spring.profiles.active的话,那么spring容器就会查找spring.profiles.default的值,如果这两个都没设置的话,那么就是没激活的profile,那么spring只会加载没有定义在profile中的bean。
—-怎么设置这两个属性呢?
方法如下:
-作为 DispatcherServlet的初始化参数
-作为Web应用的上下文参数
-作为JNDI条目
-作为环境变量
-作为JVM的系统属性
-在集成测试类上,使用@ActiveProfiles注解设置
示例一种配置(配置web.xml)
<!--通过DispatcherServlet设置spring.ptofiles.default成profile-->
<!-- 文件是web.xml哦 别错了哦 -->
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.0"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
<display-name></display-name>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
<context-param>
<param-name>applicationContext</param-name>
<param-value>/applicationContext.xml</param-value>
</context-param>
<!-- 在上下文中设置profile的默认值 -->
<context-param>
<param-name>spring.profiles.default</param-name>
<param-value>dev</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<servlet>
<servlet-name>appServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 在servlet中设置profile的默认值 -->
<init-param>
<param-name>spring.profiles.default</param-name>
<param-value>dev</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>appServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
示例这种配置spring.profiles.default,所有的开发人员都能获得到应用源码
四、使用Profile测试
Spring提供了@ActiveProfiles注解来指定运行测试时要激活的Profile,codes as follows:
// 激活dev profile
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(classes = {PersistenceTestConfig.class})
@ActiveProfiles("dev")
public class PersistenceTest{
...
}