服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - SpringBoot 多Profile使用与切换方式

SpringBoot 多Profile使用与切换方式

2021-09-03 11:52C-Ray Java教程

这篇文章主要介绍了SpringBoot 多Profile使用与切换方式,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

SpringProfile对不同环境提供不同配置功能的支持,可以通过激活、指定参数等方式快速切换环境。

文件名格式:application-{profile}.properties
可以建立多个properties(yaml)文件来不断的切换

application-dev.properties

?
1
server.port=8082

application-prod.properties

?
1
server.port=8083

application.properties

?
1
2
server.port=8081
spring.profiles.active=dev

SpringBoot 多Profile使用与切换方式

文件名格式:application-{profile}.yaml

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
server:
  port: 8082
spring:
  profiles:
    active: dev
---
spring:
  profiles: dev
server:
  port: 8083
---
spring:
  profiles: prod
server:
  port: 8084
---
spring:
  profiles: default  (未指定时默认使用的配置)
server:
  port: 80

激活方式:

?
1
2
3
4
5
6
7
yaml中:
spring:
  profiles:
    active: dev
    
properties中:
spring.profiles.active=dev

运行时:

在打包后运行的时候,添加参数:

?
1
java -jar spring-boot.jar --spring.profiles.active=dev;

tomcat 中 catalina.bat(.sh中不用“set”) 添加JAVA_OPS。通过设置active选择不同配置文件:set JAVA_OPTS="-Dspring.profiles.active=test"

web.xml方式

spring.profiles.active prod
标注方式(junit单元测试非常实用)
@ActiveProfiles({“dev”})

到此这篇关于SpringBoot 多Profile使用与切换方式的文章就介绍到这了,更多相关SpringBoot 多Profile使用与切换内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/qq_40742949/article/details/115488008

延伸 · 阅读

精彩推荐