Spring3自定义环境配置

spring profile开发环境

参考资料:https://github.com/springside/springside4/wiki/Spring
如果在开发时进行一些数据库测试,希望链接到一个测试的数据库,以避免对开发数据库的影响。

开发时的某些配置比如log4j日志的级别,和生产环境又有所区别。

各种此类的需求,让我希望有一个简单的切换开发环境的好办法,曾经在ROR的时候就很喜欢舒服。

现在spring3.1也给我们带来了profile,可以方便快速的切换环境。

配置环境

使用也是非的方便。只要在applicationContext.xml中添加下边的内容,就可以了

<beans profile="develop">
<context:property-placeholder location="classpath*:jdbc-develop.properties"/>
</beans>
<beans profile="production">
<context:property-placeholder location="classpath*:jdbc-production.properties"/>
</beans>
<beans profile="test">
<context:property-placeholder location="classpath*:jdbc-test.properties"/>
</beans>

profile的定义一定要在文档的最下边,否则会有异常。整个xml的结构大概是这样的,

<beans xmlns="..." ...>
<bean id="dataSource" ... />
<bean ... />
<beans profile="...">
<bean ...>
</beans>
</beans>

我通过给不同的环境,引入不同的properties来设置不同的属性,你也可以直接在bean里进行定义一些特殊的属性,比如下边这样,在test的时候,初始化数据库与默认数据。(代码摘录:springside)

<!-- unit test环境 -->
<beans profile="test">
<context:property-placeholder ignore-resource-not-found="true"
location="classpath*:/application.properties,
classpath*:/application.test.properties" />

<!-- Simple连接池 -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.SimpleDriverDataSource">
<property name="driverClass" value="${jdbc.driver}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
</bean>

<!-- 初始化数据表结构 与默认数据-->
<jdbc:initialize-database data-source="dataSource" ignore-failures="ALL">
<jdbc:script location="classpath:sql/h2/schema.sql" />
<jdbc:script location="classpath:data/import-data.sql" encoding="UTF-8"/>
</jdbc:initialize-database>
</beans>

切换环境

在web.xml中添加一个context-param来切换当前环境:

<context-param>
<param-name>spring.profiles.active</param-name>
<param-value>develop</param-value>
</context-param>

如果是测试类可以使用注解来切换:

@ActiveProfiles("test")

测试类大概是这个样子:

@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath:applicationContext.xml")
@ActiveProfiles("test")
public class DictionaryServiceTest extends AbstractTransactionalJUnit4SpringContextTests

你可以写一个基类来写这个注解,然后让你们测试类都继承这个测试基类,会很方便。

 

研究spring3的时候发现一个很好用的特性:环境配置(spring2是否有此特性未知)

官方示例代码如下:

<!-- app-config.xml -->
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:jdbc="http://www.springframework.org/schema/jdbc"
xmlns:jee="http://www.springframework.org/schema/jee"
xsi:schemaLocation="...">
<bean id="transferService" class="com.bank.service.internal.DefaultTransferService">
<constructor-arg ref="accountRepository" />
<constructor-arg ref="feePolicy" />
</bean>
<bean id="accountRepository" class="com.bank.repository.internal.JdbcAccountRepository">
<constructor-arg ref="dataSource" />
</bean>
<bean id="feePolicy" class="com.bank.service.internal.ZeroFeePolicy" />
<beans profile="dev">
<jdbc:embedded-database id="dataSource">
<jdbc:script location="classpath:com/bank/config/sql/schema.sql" />
<jdbc:script location="classpath:com/bank/config/sql/test-data.sql" />
</jdbc:embedded-database>
</beans>
<beans profile="production">
<jee:jndi-lookup id="dataSource" jndi-name="java:comp/env/jdbc/datasource" />
</beans>
</beans>

package com.bank.service;

@RunWith(SpringJUnit4ClassRunner.class)
// ApplicationContext will be loaded from "classpath:/app-config.xml"
@ContextConfiguration("/app-config.xml")
@ActiveProfiles("dev")
public class TransferServiceTest {
@Autowired
private TransferService transferService;

@Test
public void testTransferService() {
// test the transferService
}
}

这个除了可以切换开发、部署环境,也可以方便地切换不同的数据库。实战中我发现这个TestCase还可以被继承,其配置也会被继承,所以我现在的做法是写一个基础TestCase,配置好ContextConfiguration、ActiveProfiles,其他TestCase继承该基础TestCase。

但是集成到web环境中时,我却很久找不到如何在web.xml中切换这个环境配置,找了很久总算找到了,在web.xml中加入:

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

经测试已成功,特此记录分享。

 

 

发表评论