profiles 目录SpringProfile
发布时间:2023-06-27 17:48:40 分类:历程 浏览:6094
目录Spring Profilesbean使用profile注解XML声明profile设置profileWebApplicationInitializer 接口ConfigurableEnvironment 接口Web.xmlJVM 设置系统环境变量Maven设置Profiles In Test默认Profile获取生效的Profiles使用Environment使用spring.profiles.activeSpringBoot Profiles设置ProfilesProfile-specific Properties Files单文件配置Profile Group
Spring Profiles
今天学习下,Spring的核心功能之一 profiles,该特性允许开发者将beans映射到不同的环境中,如dev、test、prod。开发者启动服务时,可以根据自身需要在不同的环境中激活不同的配置。
bean使用profile注解
先来学习一个最简单profle的使用方式,学习如何让bean属于特定的环境。假设一个场景:一个普通的bean,只在开发期间有效,其他环境无效。
@Component
@Profile("dev")
public class DevDatasourceConfig{
}
如上述代码,只需要在声明bean时,配合@Profile注解,并指定特定的环境即可。根据上面的场景,反过来看:假设一个bean除了在开发期间无效,在其他环境(如test、prod)有效。@Profile支持NOT操作,只需要在前面加上 ! 符号。例如 !dev, 就可以将dev环境排除。
@Component
@Profile("!dev")
// @Profile(value=
XML声明profile
在XML配置文件中也可以配置profiles属性, 标签中定义了一个 profile 属性,多个属性值可以使用逗号分隔
class="org.baeldung.profiles.DevDatasourceConfig" /> 设置profile 可以通过多种方式设置profile向容器中注册bean。 WebApplicationInitializer 接口 web环境中,可以通过实现WebApplicationInitializer接口配置ServletContext上下文。 @Configuration public class MyWebApplicationInitializer implements WebApplicationInitializer { @Override public void onStartup(ServletContext servletContext) throws ServletException { servletContext.setInitParameter( "spring.profiles.active", "dev"); } } ConfigurableEnvironment 接口 通过ConfigurableEnvironment接口直接设置profile @Autowired private ConfigurableEnvironment env; ... env.setActiveProfiles("someProfile"); Web.xml web开发者可以在web.xml中使用context param激活profile属性 JVM 设置 profiles属性也可以通过JVM系统参数设置,并在应用启动时激活相关属性 -Dspring.profiles.active=dev 系统环境变量 Unix系统中,profiles可以通过声明系统变量来激活 export spring_profiles_active=dev Maven设置 Spring profiles属性通过maven配置文件声明激活。 在编译打包时,通过以下动态参数传递,直接指定profile属性,开发不需要改动任何代码。这种方式在实际开发中经常使用,编译打包完成后,直接交付给运维团队 mvn clean package -Pprod Profiles In Test 开发测试时,使用@ActiveProfile注解指定需要激活的profile。 @ActiveProfiles("dev") 目前为止,已知多种方式激活profile属性,它们的优先级,从高到低分别为: Context parameter in web.xmlWebApplicationInitializerJVM System parameterEnvironment variableMaven profile 默认Profile 如果没有指定profile,Spring激活默认的profile - default, 可以在属性文件值修改 spring.profiles.default 的值,从而修改默认profile的名字 spring.profiles.default=none 获取生效的Profiles Spring通过@Profile注解激活/禁止beans, 但是开发者希望获取生效的Profiles列表。有两种方式可以实现: 使用 Environment 对象获取spring.profiles.active属性值 使用Environment 通过注入Environment bean获取激活的profiles public class ProfileManager { @Autowired private Environment environment; public void getActiveProfiles() { for (String profileName : environment.getActiveProfiles()) { System.out.println("Currently active profile - " + profileName); } } } 使用spring.profiles.active 此外,可以通过注入spring.profiles.active属性值来获取有效的profiles。 public class ProfileManager { //如果配置多个属性,则覆盖get方法 迭代出每一个有效的profile @Value("${spring.profiles.active}") private String activeProfiles; public String getActiveProfiles() { for (String profileName : activeProfiles.split(",")) { System.out.println("Currently active profile - " + profileName); } } } 但是,如果应用中没有profile,上述代码,由于缺少配置将会导致应用启动失败,为了避免这种情况,可以定义个 kong的字符串作为默认值。 //@Value("${spring.profiles.active}") @Value("${spring.profiles.active:}") private String activeProfile; SpringBoot Profiles Spring Boot 支持以上所有的功能,并增加了一些额外的特性。 设置Profiles 在Spring Boot 默认的配置文件 - application.properties 激活 spring.profiles.active=dev 通过启动类设置profile //setAdditionalProfiles 不是静态方法,在实际使用中需要注意 SpringApplication.setAdditionalProfiles("dev"); 使用spring-boot-maven-plugin插件 ... 执行maven命令 mvn spring-boot:run Profile-specific Properties Files Spring Boot 核心特性之一是定义了基于profile的配置文件解析规则。配置文件必须以-{profile}.properties格式命名。Spring Boot自动加载解析application.properties文件,并根据profile指定,加载特定的 -{profile}.properties 文件。 例如,需要配置开发/生产两种数据源,名称分别为application-dev.properties、application-production.properties。 application-production.properties使用MYSQL数据源 spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.url=jdbc: spring.datasource.username=root spring.datasource.password=root application-dev.properties 使用内存数据库 spring.datasource.driver-class-name=org.h2.Driver spring.datasource.url=jdbc:h2:mem:db;DB_CLOSE_DELAY=-1 spring.datasource.username=sa spring.datasource.password=sa 单文件配置 为了简化不同环境的配置,开发者可以在同一个文件中定义所有属性,并使用分隔符来指定配置文件。 my.prop=used-always-in-all-profiles #--- spring.config.activate.on-profile=dev spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver spring.datasource.url=jdbc: spring.datasource.username=root spring.datasource.password=root #--- spring.config.activate.on-profile=production spring.datasource.driver-class-name=org.h2.Driver spring.datasource.url=jdbc:h2:mem:db;DB_CLOSE_DELAY=-1 spring.datasource.username=sa spring.datasource.password=sa Profile Group Spring Boot 2.4 添加的另一个特性 - Profile Group, 顾明思义,它允许开发者将类似的配置文件分组放置在一起。 假设一个场景:需要为生产环境提供多个配置概要文件,例如,生产环境中的数据库proddb、调度程序的prodquartz。 spring.profiles.group.production=proddb,prodquartz 到此这篇关于Spring Profiles使用方法详解的文章就介绍到这了,更多相关Spring Profiles内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家! 您可能感兴趣的文章:SpringBoot?Profiles?多环境配置及切换spring boot实现profiles动态切换的示例SpringBoot激活profiles的几种方式浅谈xml配置spring profiles的几个注意点Spring Boot配置特定属性spring.profiles的方法详解Spring Boot Profiles 配置和使用
相关推荐
- flymeal 大学物理大学物理((上)作业习
- payattention payattentionto是
- 2010年12月英语六级听力 2010年12
- merleanponty 1、梅洛·庞蒂(Mauri
- nanami什么意思 1、日语发音是奈奈大米2、这个
- 恋与制作人主线普通关卡是什么 关注精彩活动
- 千味涮 火锅系列品牌介绍:千味涮品牌始
- 找规律 1244781016找规律,具
- 东陵公园 东陵公园有什么好玩的?接下来,
- 气质淑女 春风送暖,清新怡人的春天在争分
- 氨基酸配方奶粉 氨基酸配方奶粉有雅培氨基酸奶粉
- 如何给黑白照片上色 效果图:原图:操作步骤1.这里
- 徒劳无功 徒劳无功的解释白白付出劳动而没
- 乳胶漆排名 问乳胶漆都是多乐士
- snis 1、stick英[stk]美[
- 直线的斜率 任何一条直线都有唯一斜率,这说
- 变频电缆 答,变频电缆?对于电缆种类的国
- 关于赞美老师的古诗 在唐诗宋词里
- 三国战纪2攻略 第一关:燃烧希望之火。老板:夏
- 故人不独亲其亲 大道之行也翻译及注释
- 中年女装时装秀 “渔”作为一个服装品牌
- 北京下线出租车 下线出租车就是营运中的出租车转
- 倪倪 词语倪倪拼音níníni倪倪基
- 柠檬大嘴巴电影 1、《新阿拉丁神灯》女主角是J
- 缭的意思_拼音_组词_部首_笔画
- 好看的平价文具盒图片 学生党已经陆续开学了
- npc村庄 我的世界如何自建NPC村庄我的
- 明季北略 明季北略 书名。明末清初计六
- 法学论文格式 法学论文格式法学论文格式一般包
- 小黑盒怎么开国服房间 开始设置文件
- 安亭斯凯孚待遇怎么样 祝你找到好工作
- 康师傅股票为什么涨了 94个百分点
- 怎么选择手机号码 pstrong4
- 掠组词 掠夺的组词:略读,掠夺,一瞥,
- 最新推荐
-
- 布袋密码文具盒图片 既环保又美观
- 忍者学院秘籍 让大家一起体验
- 小咖秀怎么回复别人 深受众多小伙伴的喜爱
- 天策碑铭秘籍 在新版本的后台
- 怎么买蒙古股票 可先卖出手中持股
- 幻痛主线9 所以他们到处跑
- 小米手机怎么防盗 别人想卸载也卸载不了
- 幼儿园宝宝愿望怎么写 每年我都想旺气十足
- 总会计师素质要求 定期检查财务工作
- 山东中瑞会计师事务所 埃利奥特·恩戈克会计师
- 怎么开心工作 千万不要太紧张劳累
- 恒大股票的名称叫什么 真真正正的企业营销总
- 密室逃脱美妆学院秘籍 pstrong1
- 怎么给苹果6镀美图 选择一张照片点击进入
- 左右互搏术秘籍 刚开始悟性低
- 崩坏3第四章主线结局 为了方便大家通关
- 怎么用小雨伞恢复系统 1的固件即可
- 张惠萍舞蹈 pstrong3
- 恒扬科技怎么样 我玩不来吃鸡
- 快乐桑巴 呼唤异世流光
- 怎么看舞蹈动作的拍子 按一定的顺序重复出现)
- 怎么购买香港的股票 你个人身份证就可以了
- 怎么设置手机网络名称是什么原因 1.手机SIM卡的问题
- 工作经验日语怎么说 その中の一年间には日本向けのプロジェクトを开発し
- 恒邦保险股票有多少 或者先抛出三分之二
- 怎么看股票里散户多少 发达地区标准会高一些
- 彩虹六号国服涨价时间 围攻的原版好
- 怎么做数量关系题 最后想说的是
- 小智解说S5国服第一争 我觉得她很难生气
- 惠普1020驱动下载 h50176
- 常见股票估值方法是什么 市盈率=股价/每股收益
- 怎么把网页保存为图片 右键点击网页
- 恢复魔方的软件 wenwen
- 恒立液压股票怎么样 成长质量评级投资建议
- 形容男人穿衣服好看 描写古代男子外貌
- 如何配置wi 但为了安全起见
- 想学维族舞蹈男士 pstrong3
- 帝国覆灭战秘籍 pstrong2
- 小伞舞蹈视频大全 右掌指向地面
- 怎么看哪个是创业板股票 落实到上市规则之中
- 想学习会计师 不建议花时间在大题上
- 平安京 各式各样的小学生
- 怎么备份s4的通讯录 请点击备份(或恢复)
- 强馨门窗质量怎么样 优质的铝合金门窗
- 怎么辞职才能索要赔偿 多找找自己的不足
- 天津塘沽得力办公文具 我们先来看看榜单
- 惠州威健厂环境怎么样 惠州盛利电子厂好
- 怎么用键盘控制桌面 完成上述设置后
- 惠普probook n卡的画面会更流畅
- 崩坏3主线关卡解析 主要针对材料掉落率
- 最新TAG