Spring 云客户端尝试 运行 服务器端口 8888

Spring cloud client trying to run on server port 8888

配置服务器已启动,客户端可以从配置服务器获取属性。

HTTP GET http://localhost:8888/account-service/dev/config
Accept=[application/json, application/*+json]
Response 200 OK

但问题是,客户端服务正在尝试在配置服务器端口 8888 上启动。我已经在客户端中设置了 server.port=8080,但仍然无法正常工作。

***************************
APPLICATION FAILED TO START
***************************

Description:

Web server failed to start. Port 8888 was already in use.

我是否遗漏了任何配置?非常感谢任何帮助。

配置服务器 application.properties,

spring.application.name=config-server
spring.cloud.config.profiles=dev 
spring.cloud.config.server.git.uri=REPO_URL
server.port=8888

终于,我找到了解决办法。当我尝试启动客户端服务时,server.port 也被配置服务器端口覆盖。我在配置回购 (account-service.properties) 的客户端服务配置文件的属性文件中添加了 server.port=8080 并且它起作用了。