java – spring cloud – 我的jar外面的bootstrap.properties
作者:互联网
我试图从我的jar外部放置bootstrap.properties,因此它不会被其他开发人员错误地覆盖.你能在这里建议吗?
这是它的’内容 – 指向spring server config
# application name
spring.application.name=elixium
# The server entry point
spring.cloud.config.uri=http://localhost:8888
解决方法:
Spring Cloud使用相同的locations as spring boot来查找bootstrap.properties(或.yml).所以classpath:,classpath:/ config,file :,file:config /是默认搜索路径,./ config /是最高优先级.如果您的文件位于./config或./,它应该可以正常工作.属性(spring.cloud.bootstrap.location)到change the location与boot略有不同.
标签:spring-cloud-config,java,spring,spring-cloud 来源: https://codeday.me/bug/20190724/1525348.html