Spring环境配置
研究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>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。