spring3.1 profile 配置不同的环境

在applicationContext.xml中添加下边的内容:

  1. <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的定义一定要在文档的最下边,否则会有异常

可以直接在bean里进行定义一些特殊的属性,如下边这样,在test,初始化数据库与默认数据。(代码摘录:springside)

  1. <!-- 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来切换当前环境:

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

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

  1. @RunWith(SpringJUnit4ClassRunner.class)  

  2. @ContextConfiguration(locations = "classpath:applicationContext.xml")  

  3. @ActiveProfiles("test")  

  4. public class ServiceTest extends AbstractTransactionalJUnit4SpringContextTests  

可以写一个基类,然后都继承该类,这样很方便。

或者还有一种方式:

applicationcontext-xml:

<bean id="propertyConfigurer"
class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" p:locations-ref="locations"/>
<beans profile="production">
<util:list id="locations">
<value>classpath:/properties/production/sys_addr.properties</value>
<value>classpath:/properties/production/redis.properties</value>
<value>classpath:/properties/production/jdbc.properties</value>
</util:list>
    </beans>
<beans profile="test">
<util:list id="locations">
<value>classpath:/properties/test/sys_addr.properties</value>
<value>classpath:/properties/test/redis.properties</value>
<value>classpath:/properties/test/jdbc.properties</value>
</util:list>
</beans>


你可能感兴趣的:(spring,多种数据库环境)