Springboot项目启动指定配置文件
程序员文章站
2022-04-22 13:39:22
...
springboot项目如果有多个启动环境,则根目录的resources下会有几个.properties配置文件,例如:
application-dev.properties: 表示你的开发环境
application-test.properties: 表示你的测试环境
application-prod.properties: 表示你的生产环境
打包的是否不必处理,一起打入JAR包。
在启动项目时候,使用-D指定参数,
java -jar -Dspring.profiles.active=test xxxx.jar
即指定采用application-test.properties中配置的属性
上一篇: 游戏2048——那些年我们追过的脸萌
下一篇: 如何测试机器的大小端
推荐阅读
-
java如何实现项目启动时执行指定方法
-
Intellij IDEA实现SpringBoot项目多端口启动的两种方法
-
Spring Web项目spring配置文件随服务器启动时自动加载
-
Intellij IDEA实现SpringBoot项目多端口启动的两种方法
-
Spring Web项目spring配置文件随服务器启动时自动加载
-
使用tomcat启动SpringBoot项目
-
springBoot项目启动类启动无法访问
-
Springboot 使用Idea启动web项目访问JSP报404错误解决
-
springboot启动feign项目报错:Service id not legal hostname (LCN_TEACHER)
-
项目中dwr有多个配置文件,tomcat启动Missing config file: 'WEB-INF/dwr/dwr-*.xml'解决方法!