浏览器上的配置服务器没有属性

问题描述 投票:0回答:1
http://localhost:8888/configserver/default

回复:

{"name":"configserver","profiles":["default"],"label":null,"version":"2e06363687594606c88802af5682da972955bec7","state":null,"propertySources":[]}

属性文件git文件夹: /home/用户/工作空间/后端/git-logspateconfig

有 2 个文件:

  1. Accounting.properties 和logspate-config.properties,内容相同。
accounting.maxInstances=10000
accounting.minInstances=10

configserver 项目(@EnableConfigServer 和 @SpringBootApplication)具有以下文件:

spring.application.name=configserver
server.port=8888

#spring.cloud.config.server.git.uri=file:///home/user/workspace/backend/git-logspateconfig
#spring.cloud.config.server.git.default-label=master

# Custom HTTP configurations for Git repository access
spring.cloud.config.server.git.uri=file:///home/user/workspace/backend/git-logspateconfig
spring.cloud.config.server.git.skipSslValidation=true
spring.cloud.config.server.git.username=nkrishnawat
spring.cloud.config.server.git.password=_lF2LT4MzKaY5i0OLDlDN1QwLQD4jNr4dfARZ
spring.cloud.config.server.git.default-label=master

为什么我没有获得响应值,服务器控制台上没有错误。

spring cloud microservices spring-cloud
1个回答
0
投票

属性文件命名约定:Spring Cloud Config Server 默认情况下查找以应用程序名称和配置文件命名的属性文件,并用连字符分隔。例如,如果您的应用程序名称是 configserver 并且您使用的是默认配置文件,则属性文件应命名为 configserver-default.properties 或 configserver-default.yml。 - 来自 CHATGpt

© www.soinside.com 2019 - 2024. All rights reserved.