springboot获取profile的操作
springboot获取profile
通过代码获取profile
@Component public class ProfileUtils implements ApplicationContextAware { private static ApplicationContext context = null; @Override public void setApplicationContext(ApplicationContext applicationContext) throws BeansException { this.context = applicationContext; } public static String getActiveProfile(){ String[] profiles = context.getEnvironment().getActiveProfiles(); if(profiles.length != 0){ return profiles[0]; } return ""; } }
通过注解的方式来获取Profile
@Profile("dev","test") //下面的配置信息只有在dev环境和test环境会生效 @Service
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。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
SpringMVC结合模板模式实现MyBatisPlus传递嵌套JSON数据
我们经常会遇到需要传递对象的场景,有时候,我们需要将一个对象的数据传递给另一个对象进行处理,但是又不希望直接暴露对象的内部结构和实现细节,所以本文给大家介绍了SpringMVC结合模板模式实现MyBatisPlus传递嵌套JSON数据,需要的朋友可以参考下2024-03-03SpringCloud 服务负载均衡和调用 Ribbon、OpenFeign的方法
这篇文章主要介绍了SpringCloud 服务负载均衡和调用 Ribbon、OpenFeign的方法,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下2020-09-09IDEA下lombok安装及找不到get,set的问题的解决方法
这篇文章主要介绍了IDEA下lombok安装及找不到get,set的问题的解决方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-04-04java、python、JavaScript以及jquery循环语句的区别
本篇文章主要介绍java、python、JavaScript以及jquery的循环语句的区别,这里整理了它们循环语句语法跟示例,以便大家阅读,更好的区分它们的不同2016-07-07idea报错:程序包org.springframework.web.bind.annotation不存在
在用本地的maven仓库的时候会org.springframework.web.bind.annotation不存在的错误,本文就详细的介绍一下解决方法,感兴趣的可以了解下2023-08-08
最新评论