Spring Cloud
文章平均质量分 69
Ztrue
这个作者很懒,什么都没留下…
展开
-
【Dubbo】org.apache.dubbo.remoting.RemotingException: message can not send, because channel is closed
记一笔,莫名其妙出现了报错,排查了半天,终于解决了,结果真是有些无语。解决方案1.排查Nacos服务列表中,provider和consumer是否正常注册。未注册,说明你的nacos server或者client的配置有问题2.检查一下自己有没有开代理。我是打开了Clashx, 它把我的本地网络代理掉了。原创 2022-08-24 15:18:54 · 2263 阅读 · 1 评论 -
Spring-Cloud RestTemplate 服务间调用
这是一篇非常简单的笔记, 有用的只是第三种实现方式RestTemplate 的三种实现方式第一种方式 这不重要直接使用 new 一个RestTemplate出来, URL直接写死: RestTemplate restTemplate = new RestTemplate(); String resp = restTemplate.getForObject("http://localho...原创 2019-02-21 13:34:45 · 361 阅读 · 0 评论 -
Spring-Cloud Eureka 配置
Eureka启动: nohup java -jar eureka-0.0.1-SNAPSHOT.jar > /dev/null 2>&1 &原创 2019-02-16 00:53:57 · 116 阅读 · 0 评论