SpringBoot系列记录(四)——profile多环境配置
程序员文章站
2022-03-08 14:01:15
...
在实际项目开发过程中,我们会有开发,测试,生产等多个环境,使用的数据库,或者其他配置信息自然也不一样,此时需要多个配置文件来对应不同的环境。
新建dev,prod配置文件
application.properties
server.port=8080
spring.profiles.active=prod
application-dev.properties
server.port=8081
application-prod.properties
server.port=8083
第一种方式:spring.profiels.active
可以看到在主配置文件中有spring.profiles.active=prod,意思是启用prod这个配置文件,运行demo
第二种方式:命令行
这里我们不打包了,直接在测试的时候传入命令行参数,与打包后使用命令行效果一致,使用--spring.profiles.active=dev
运行Demo看一下,虽然上面的主配置文件中我们**的是prod,但是我们使用命令行参数后,**的是dev
第三种方式: 虚拟机参数
和传入命令行参数类似,这里使用方法要在前面加上-D
运行Demo
推荐阅读
-
springboot笔记05——profile多环境配置切换
-
springboot利用profile配置文件进行多环境切换
-
学习笔记springBoot——配置profile多环境方法
-
非maven springboot配置多环境profile
-
SpringBoot 结合profile配置多环境
-
springboot多profile环境maven配置
-
跟我学springboot(十一)springboot配置profile多环境支持
-
【SpringBoot】SpringBoot配置Profile多环境支持
-
SpringBoot配置Profile多环境支持
-
springboot03-Profile多环境配置