java-我可以在Spring Cloud Config Server中托管JSON文件吗?
作者:互联网
我们正在使用Spring Cloud Config Server来托管Spring Boot应用程序的所有配置.我们希望从Config Server中检索大量的JSON文本.
我们当前的方法是将json文本定义为属性值
myproperty.jsontext="{'name':'value'}"
除了将JSON文本定义为属性值之外,还可以通过其他方式托管&从配置服务器获取它?
Spring Cloud Config Server是否支持.json文件?
更新(其他问题):
我可以按以下方式访问searchLocations属性吗?
@Value("${spring.cloud.config.server.native.searchLocations}
在访问时,我们不断收到以下错误
Caused by: java.lang.IllegalArgumentException: Could not resolve placeholder 'spring.cloud.config.server.native.searchLocations' in string value "${spring.cloud.config.server.native.searchLocations}"
解决方法:
我已经在https://github.com/spring-projects/spring-boot/issues/4027#issuecomment-144649875向Spring Boot提交了功能支持.让我知道这是否对您有用…
标签:spring-cloud,config,spring,json,java 来源: https://codeday.me/bug/20191119/2040109.html