怎么在spring cloud中使用Eureka 實現(xiàn)服務治理?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創(chuàng)新互聯(lián)專注骨干網(wǎng)絡服務器租用10余年,服務更有保障!服務器租用,服務器托管 成都服務器租用,成都服務器托管,骨干網(wǎng)絡帶寬,享受低延遲,高速訪問。靈活、實現(xiàn)低成本的共享或公網(wǎng)數(shù)據(jù)中心高速帶寬的專屬高性能服務器。
一、搭建服務注冊中心
先列出完整目錄結構:
搭建過程如下:
1.創(chuàng)建maven工程:eureka(具體實現(xiàn)略)
2.修改pom文件,引入依賴
4.0.0 com.sam eureka 0.0.1-SNAPSHOT org.springframework.boot spring-boot-starter-parent 1.5.1.RELEASE 1.8 org.springframework.cloud spring-cloud-dependencies Camden.SR6 pom import org.springframework.cloud spring-cloud-starter-eureka-server
3.創(chuàng)建啟動類
/** * * @EnableEurekaServer * 用來指定該項目為Eureka的服務注冊中心 */ @EnableEurekaServer @SpringBootApplication public class EurekaApp { public static void main(String[] args) { SpringApplication.run(EurekaApp.class, args); } }
4.配置application.properties文件
#設置tomcat服務端口號 server.port=1111 #設置服務名稱 spring.application.name=eureka-service eureka.instance.hostname=localhost #注冊中心不需要注冊自己 eureka.client.register-with-eureka=false #注冊中心不需要去發(fā)現(xiàn)服務 eureka.client.fetch-registry=false #設置服務注冊中心的URL eureka.client.serviceUrl.defaultZone=http://${eureka.instance.hostname}:${server.port}/eureka
5.啟動服務并訪問,我們會看到這樣的畫面:
二、注冊服務提供者
先列出完整目錄結構:
搭建過程如下:
1.創(chuàng)建maven工程:hello-service(具體實現(xiàn)略)
2.修改pom文件,引入依賴
4.0.0 com.sam hello-service 0.0.1-SNAPSHOT org.springframework.boot spring-boot-starter-parent 1.5.1.RELEASE 1.8 org.springframework.cloud spring-cloud-dependencies Camden.SR6 pom import org.springframework.cloud spring-cloud-starter-eureka
3.創(chuàng)建啟動類
/*** * * @EnableDiscoveryClient * 讓服務使用eureka服務器 * 實現(xiàn)服務注冊和發(fā)現(xiàn) * */ @EnableDiscoveryClient @SpringBootApplication public class HelloApp { public static void main(String[] args) { SpringApplication.run(HelloApp.class, args); } }
4.創(chuàng)建controller
@RestController public class HelloController { Logger logger = LoggerFactory.getLogger(HelloController.class); @Autowired DiscoveryClient discoveryClient; @RequestMapping("/hello") public String hello() { ServiceInstance instance = discoveryClient.getLocalServiceInstance(); //打印服務的服務id logger.info("*********" + instance.getServiceId()); return "hello,this is hello-service"; } }
5.配置application.properties文件
server.port=9090 #設置服務名 spring.application.name=hello-service #設置服務注冊中心的URL,本服務要向該服務注冊中心注冊自己 eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka
6.啟動并測試
1.)啟動后再hello-service的控制臺會有這種字樣(xxx代表你的PC名)
復制代碼 代碼如下:
Registered instance HELLO-SERVICE/xxx:hello-service:9090 with status UP (replication=false)
eureka的控制臺會打印出如下字樣(xxx代表你的PC名)
復制代碼 代碼如下:
Registered instance HELLO-SERVICE/xxx:hello-service:9090 with status UP (replication=false)
2.)再次訪問localhost:1111,會發(fā)現(xiàn)有服務注冊到注冊中心了
三、服務發(fā)現(xiàn)和消費
完整目錄結構如下:
搭建過程:
1.創(chuàng)建maven工程(具體實現(xiàn)略)
2.修改pom文件,引入依賴
4.0.0 com.sam hello-consumer 0.0.1-SNAPSHOT org.springframework.boot spring-boot-starter-parent 1.5.1.RELEASE 1.8 org.springframework.cloud spring-cloud-dependencies Camden.SR6 pom import org.springframework.cloud spring-cloud-starter-eureka org.springframework.cloud spring-cloud-starter-ribbon
這里比hello-service服務提供者,多了ribbon的依賴
3.創(chuàng)建啟動類
@EnableDiscoveryClient @SpringBootApplication public class ConsumerApp { //@Bean 應用在方法上,用來將方法返回值設為為bean @Bean @LoadBalanced //@LoadBalanced實現(xiàn)負載均衡 public RestTemplate restTemplate() { return new RestTemplate(); } public static void main(String[] args) { SpringApplication.run(ConsumerApp.class, args); } }
這里也要用到@EnableDiscoveryClient, 讓服務使用eureka服務器, 實現(xiàn)服務注冊和發(fā)現(xiàn)
4.創(chuàng)建controller
@RestController public class ConsumerController { //這里注入的restTemplate就是在com.sam.ConsumerApp中通過@Bean配置的實例 @Autowired RestTemplate restTemplate; @RequestMapping("/hello-consumer") public String helloConsumer() { //調(diào)用hello-service服務,注意這里用的是服務名,而不是具體的ip+port restTemplate.getForObject("http://hello-service/hello", String.class); return "hello consumer finish !!!"; } }
5.配置application.properties文件
server.port=9999 spring.application.name=hello-consumer eureka.client.serviceUrl.defaultZone=http://localhost:1111/eureka #這里的配置項目和服務提供者hello-service一樣
6.啟動,測試1.)啟動eureka。為了展示負責均衡的效果,我們的hello-service啟動兩個服務,啟動兩個服務的具體步驟如下
以上是hello-service1的啟動步驟,端口號為9090;同樣方法設置hello-service2,端口號為9091(具體實現(xiàn)略)。
2.)啟動hello-consumer
3.)再次訪問http://localhost:1111/,會發(fā)現(xiàn)有2個hello-service服務(端口號一個是9090,一個是9091),1個hello-consume服務
4.) 多次訪問http://localhost:9999/hello-consumer,會發(fā)現(xiàn)hello-service1和hello-service2會輪流被調(diào)用(已經(jīng)實現(xiàn)了負責均衡),可以通過兩者的控制臺打印內(nèi)容確認(還記得我們在hello-service的controller中有個loggerlogger.info("*********" + instance.getServiceId());嗎?對,就是這個打印)
關于怎么在spring cloud中使用Eureka 實現(xiàn)服務治理問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關知識。