随笔分类 -  springcloud

摘要:eureka: client: service-url: #defaultZone: http://localhost:8762/eureka/,http://localhost:8763/eureka/ #eureka相互注册(保证高可用) defaultZone: http://localhost:8761/eureka/,http://localhost... 阅读全文
posted @ 2019-02-14 15:32 scwyfy 阅读(130) 评论(0) 推荐(0)
摘要:------------------客户端controller层--------------------- @RestController public class ClientFeignController { @Autowired private ProductFeignInterface productFeignInterface; @GetMapping("/msg") pu... 阅读全文
posted @ 2018-09-05 10:52 scwyfy 阅读(105) 评论(0) 推荐(0)
摘要:@RestController public class ClientController { @Autowired private LoadBalancerClient loadBalancerClient; // @Autowired // private RestTemplate template; @GetMapping("/msg") public String ms... 阅读全文
posted @ 2018-09-05 09:55 scwyfy 阅读(181) 评论(0) 推荐(0)