当前位置:   article > 正文

springboot程序配置自定义参数_-dspring.config.location

-dspring.config.location

VM options: -D<name>=<value>   配置自定义参数

指定dev环境

-Dspring.profiles.active=dev

给定新增的配置文件路径

-Dspring.config.location=classpath:/myConfig.yml

-Dspring.config.additional-location=classpath:/myConfig.yml

spring.config.location 用于替换指定的配置文件,原有的application.properties或application.yml文件均失效。

spring.config.additional-location 用于追加配置文件,原有的application.properties或application.yml文件均有效。

配置文件加载优先级        由高到低的顺序
file:./config/(项目下的config,和src同级)
file:./
classpath:/
classpath:/config/

 

 

 

 

 

1.设置堆大小

-Xms1024m -Xmx1024m

2.设置远程debug

-Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=18080

3.配置外部配置文件来改变配置属性值

--spring.config.location=file:///opt/dbconfigs/myProject.yml

举个栗子:

java -Xms1024m -Xmx1024m -Xdebug -Xnoagent -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=18080 -jar myProject.jar --spring.config.location=file:///opt/dbconfigs/myProject.yml

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/157217
推荐阅读
相关标签
  

闽ICP备14008679号