本文主要是介绍nacos Spring cloud 报错 URI is not absolute、service not found、502 bad gateway,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
- 服务没找到,请加入依赖
<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-loadbalancer</artifactId></dependency>
- 如果是 "URI is not absolute" , 将URL变成固定的字符串,例如
private static final String sendMessageUrl = "http://service-provider/send";//而不是注入的形式
@Value("${service-provider-url}")
private static final String sendMessageUrl
- 如果是 502 bad gateway 将代理服务全关闭,例如(clashx)
这篇关于nacos Spring cloud 报错 URI is not absolute、service not found、502 bad gateway的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!