配置数据位置 'configserver:http://localhost:8888/'不存在

发布于 2025-01-19 10:40:48 字数 455 浏览 0 评论 0原文

的配置服务器正在Localhost:8888上运行

Config data location 'configserver:http://localhost:8888/' does not exist

Action:

Check that the value 'configserver:http://localhost:8888/' at class path resource 
[application.properties] - 2:22 is correct, or prefix it with 'optional:'

spring.application.name=limits-service
spring.config.import=configserver:http://localhost:8888/
spring.profiles.active=dev

My config server is running on localhost:8888 but when i try to fetch configs from my config server ,its shows this error

Config data location 'configserver:http://localhost:8888/' does not exist

Action:

Check that the value 'configserver:http://localhost:8888/' at class path resource 
[application.properties] - 2:22 is correct, or prefix it with 'optional:'

my other microservice has this application.properties

spring.application.name=limits-service
spring.config.import=configserver:http://localhost:8888/
spring.profiles.active=dev

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伴我老 2025-01-26 10:40:48

spring.config.import属性

之前的
spring.config.import = configserver:http:// localehost:8080/

之后
spring.config.import = http:// localehost:8080/

This worked for me after removing text configserver from

spring.config.import properties

Before
spring.config.import=configserver:http://localehost:8080/

After
spring.config.import=http://localehost:8080/

尐籹人 2025-01-26 10:40:48

我昨天也遇到了这个问题,原因是客户端应用程序中缺少 spring-cloud-starter-config 的依赖项。

所以检查你的 gradle 依赖项或 Maven PoM

dependencies {
    implementation 'org.springframework.cloud:spring-cloud-starter-config'

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-config</artifactId>
</dependency>

I also experienced this issue yesterday, the cause is a missing dependency for spring-cloud-starter-config in the client application.

so check your gradle dependencies or Maven PoM

dependencies {
    implementation 'org.springframework.cloud:spring-cloud-starter-config'

or

<dependency>
    <groupId>org.springframework.cloud</groupId>
    <artifactId>spring-cloud-starter-config</artifactId>
</dependency>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文