Spring Profile基本使用

Spring profile是Spring 3引入的概念,一般系统开发的时候更喜欢使用Maven中的profile来进行不同环境配置文件的区分。Spring的profile一直没有怎么使用,最近在一个公司系统开发过程中同事使用了Spring profile。可是在设置default profile上遇到了麻烦。跟着一起研究了半天,才发现了问题所在。

Spring profile在我们系统中的使用非常简单,并没有使用runtime的特性,只是在xml中定义了不同profile环境中的beans

<!-- other beans -->
    <bean id="validator" class="org.springframework.validation.beanvalidation.LocalValidatorFactoryBean"/>
    .......
    <!-- production环境 -->
    <beans profile="production">
        <context:property-placeholder ignore-resource-not-found="true"
            location="classpath*:/application.properties" />    
    ....
    </beans>
    <!-- local环境 -->
    <beans profile="local">
        <context:property-placeholder ignore-resource-not-found="true"
            location="classpath*:/application.properties
            ,classpath*:/application.development.properties"/>  
    ....
    </beans>

接下来我们一般可以通过在web.xml,在properties中来选择使用什么环境的profile,例如

    <!-- web.xml -->
    <context-param>
            <param-name>spring.profiles.default</param-name>
            <param-value>production</param-value>
    </context-param>
    <!-- properties选择 -->
    System.setProperty("spring.profiles.active", "development");

我们的问题出在哪里呢?出在了我们想通过jndi而不是jvm参数来选择默认的profile,首先我们知道spring profile的设置不能在properties文件里,因为spring的加载顺序。我们不想改变系统的启动参数,所以选择了jndi的方式来读取profile的默认启动,关键来了,在配置jndi的时候我们进行了以下设置

 <Environment name="spring.profiles.active" type="java.lang.String" value="local">

悲哀的发现不起作用,spring的log里面也没有任何有用的提示,还没到获取profile相关的log就因为读取不到bean挂了。只好去掉了profile相关的xml文件重启启动一次系统才发现spring默认读取的jndi名字是spring.profiles.default而不是spring.profiles.active

  • 3
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值