赞
踩
springcloud常用的服务注册以及发现组件除了eureka还有zookeeper,这里介绍一下spring cloud整合zookeeper
在对zookeeper进行相关配置后开启即可,这里不过多介绍
接着是将服务的提供者注册进zookeeper
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-zookeeper-discovery</artifactId>
</dependency>
server.port=8004
spring.application.name=服务名称
spring.cloud.zookeeper.connect-string=zookeeper的url
添加依赖@EnableDiscoveryClient
@SpringBootApplication
@EnableDiscoveryClient
public class CloudProviderPayment8004Application {
public static void main(String[] args) {
SpringApplication.run(CloudProviderPayment8004Application.class, args);
}
}
这一步对pom、properties以及主启动类的配置与第二步相似,只是注意修改端口号以及服务名称
接下来就是使用RestTemplate远程调用微服务,这里可以参考RestTemplate的使用
这样最后在controller调用相关方法即可
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。