欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot中4种方式**指定profile

程序员文章站 2022-06-03 22:44:56
...

1.写多个application- dev/prod.properties.yml    +    在application.properties/application.yml配置文件中写入

spring.profiles.active=dev

或者

spring:
  profiles:
    active: dev

2.最简单的方法:一个application.yml文件搞定

server:
  port: 8085
spring:
  profiles:
    active: prod
---
server:
  port: 8083
spring:
  profiles: dev
---
server:
  port: 8084
spring:
  profiles: prod  #指定属于哪个环境

启动结果

springboot中4种方式**指定profile

3.命令行:将项目install,然后在jar包所在磁盘地址栏cmd,运行如下命令启动项目

java -jar spring-boot-02-config-0.0.1-SNAPSHOT.jar --spring.profiles.active=dev

​ 酱紫可以直接在测试的时候,配置传入命令行参数,优先级最高,会覆盖上面的

或者用idea运行项目,在springboot中4种方式**指定profile中配置,效果和级别等同命令行

springboot中4种方式**指定profile

4.虚拟机参数

-Dspring.profiles.active=dev    优先级比配置文件

springboot中4种方式**指定profile

相关标签: profile **