摘要:接收參數(shù)對象添加用戶微服務(wù)啟動(dòng)類用戶服務(wù)類添加服務(wù)注冊,將用戶微服務(wù)注冊到中。
SpringCloud(第 004 篇)用戶服務(wù)類(添加服務(wù)注冊,將用戶微服務(wù)注冊到 EurekaServer 中)
-
一、大致介紹通過添加注解 EnableEurekaClient,將用戶微服務(wù)注冊到 EurekaServer 中。二、實(shí)現(xiàn)步驟 2.1 添加 maven 引用包
2.2 添加應(yīng)用配置文件(springms-provider-usersrcmainresourcesapplication.yml)4.0.0 springms-provider-user 1.0-SNAPSHOT jar com.springms.cloud springms-spring-cloud 1.0-SNAPSHOT org.springframework.boot spring-boot-starter-data-jpa org.springframework.boot spring-boot-starter-web com.h2database h2 runtime org.springframework.cloud spring-cloud-starter-eureka org.springframework.boot spring-boot-starter-actuator
server: port: 7900 spring: jpa: generate-ddl: false show-sql: true hibernate: ddl-auto: none datasource: platform: h2 schema: classpath:schema.sql data: classpath:data.sql application: name: springms-provider-user #全部小寫 logging: level: root: INFO org.hibernate: INFO org.hibernate.type.descriptor.sql.BasicBinder: TRACE org.bibernate.type.descriptor.sql.BasicExtractor: TRACE com.springms: DEBUG eureka: client: service-url: # defaultZone: http://localhost:8761/eureka/ #不需要認(rèn)證 defaultZone: http://admin:admin@localhost:8761/eureka #需要認(rèn)證 instance: prefer-ip-address: true instance-id: ${spring.application.name}:${spring.cloud.client.ipAddress}:${spring.application.instance_id:${server.port}} # 元數(shù)據(jù)測試 metadata-map: zone: ABC # eureka 可以理解的元數(shù)據(jù) hmily: HMILYYLIMH # 不會(huì)影響客戶端行為 # appname: appname-springms-provider-user # 直接顯示的是App應(yīng)用的名稱,在 http://localhost:8761/ 地址處可以看到該注冊服務(wù)的應(yīng)用名稱 # # 這里我們就先注釋掉,知道這個(gè) hostname 的用法就可以了,先注釋掉不影響后面的測試 # hostname: user # 然后我們就可以通過 http://user:7900/simple/1 來訪問我們的地址了2.3 添加 H2 數(shù)據(jù)庫腳本(springms-provider-usersrcmainresourcesschema.sql)
drop table user if exists; CREATE TABLE USER( id BIGINT GENERATED by default as identity, username VARCHAR(40), name VARCHAR(20), age int(3), balance DECIMAL(10, 2), PRIMARY KEY(id) );2.4 插入 H2 數(shù)據(jù)庫一些初始化數(shù)據(jù)(springms-provider-usersrcmainresourcesdata.sql)
INSERT into user (id, username, name, age, balance) values (1, "user1", "張三", 20, 100.00); INSERT into user (id, username, name, age, balance) values (2, "user2", "李四", 22, 100.00); INSERT into user (id, username, name, age, balance) values (3, "user3", "王五", 24, 100.00); INSERT into user (id, username, name, age, balance) values (4, "user4", "趙六", 26, 100.00); INSERT into user (id, username, name, age, balance) values (5, "user5", "李逵", 27, 100.00); INSERT into user (id, username, name, age, balance) values (6, "user6", "張遠(yuǎn)", 10, 100.00); INSERT into user (id, username, name, age, balance) values (7, "user7", "迪拜", 60, 100.00); INSERT into user (id, username, name, age, balance) values (8, "user8", "哈士奇", 40, 100.00); INSERT into user (id, username, name, age, balance) values (9, "user9", "關(guān)羽", 30, 100.00);2.5 添加訪問底層數(shù)據(jù)模型的DAO接口(springms-provider-usersrcmainjavacomspringmscloudrepositoryUserRepository.java)
package com.springms.cloud.repository; import com.springms.cloud.entity.User; import org.springframework.data.jpa.repository.JpaRepository; import org.springframework.stereotype.Repository; @Repository public interface UserRepository extends JpaRepository2.6 添加實(shí)體用戶類User(springms-provider-usersrcmainjavacomspringmscloudentityUser.java){ }
package com.springms.cloud.entity; import java.math.BigDecimal; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; @Entity public class User { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @Column private String username; @Column private String name; @Column private Short age; @Column private BigDecimal balance; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getUsername() { return this.username; } public void setUsername(String username) { this.username = username; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Short getAge() { return this.age; } public void setAge(Short age) { this.age = age; } public BigDecimal getBalance() { return this.balance; } public void setBalance(BigDecimal balance) { this.balance = balance; } }2.7 添加用戶Web訪問層Controller(springms-provider-usersrcmainjavacomspringmscloudcontrollerUserController.java)
package com.springms.cloud.controller; import com.google.common.collect.Lists; import com.springms.cloud.entity.User; import com.springms.cloud.repository.UserRepository; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.*; import java.util.ArrayList; import java.util.List; /** * 用戶界面控制層。 * * @author hmilyylimh * * @version 0.0.1 * * @date 2017/9/17 * */ @RestController public class UserController { @Autowired private UserRepository userRepository; // @Autowired // private EurekaClient discoveryClient; @GetMapping("/simple/{id}") public User findById(@PathVariable Long id){ return userRepository.findOne(id); } // public String serviceUrl(){ // InstanceInfo instance = this.discoveryClient.getNextServerFromEureka("SPRINGMS-PROVIDER-USER", false); // return instance.getHomePageUrl(); // } @PostMapping("/user") public User postUser(@RequestBody User user){ System.out.println("@GetMapping("user") 接收參數(shù)對象 user: " + user); return user; } @GetMapping("listAll") public List2.8 添加用戶微服務(wù)啟動(dòng)類(springms-provider-usersrcmainjavacomspringmscloudMsProviderUserApplication.java)listAll(){ ArrayList list = Lists.newArrayList(); User user1 = new User(1L, "user1"); User user2 = new User(1L, "user2"); User user3 = new User(1L, "user3"); User user4 = new User(1L, "user4"); User user5 = new User(1L, "user5"); list.add(user1); list.add(user2); list.add(user3); list.add(user4); list.add(user5); return list; } }
package com.springms.cloud; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; /** * 用戶服務(wù)類(添加服務(wù)注冊,將用戶微服務(wù)注冊到 EurekaServer 中)。 * * @author hmilyylimh * * @version 0.0.1 * * @date 2017/9/17 * */ @SpringBootApplication @EnableEurekaClient public class MsProviderUserApplication { public static void main(String[] args) { SpringApplication.run(MsProviderUserApplication.class); System.out.println("【【【【【【 用戶微服務(wù) 】】】】】】已啟動(dòng)."); } }三、測試
/**************************************************************************************** 一、用戶微服務(wù)接口測試: 1、注解:EnableEurekaClient 2、啟動(dòng) springms-discovery-eureka 模塊服務(wù),啟動(dòng)1個(gè)端口; 3、啟動(dòng) springms-provider-user 模塊服務(wù),啟動(dòng)1個(gè)端口; 4、在瀏覽器輸入地址http://localhost:7900/simple/1 可以看到信息成功的被打印出來,說明用戶微服務(wù)正常; 5、在瀏覽器輸入地址 http://localhost:8761 并輸入用戶名密碼 admin/admin 進(jìn)入Eureka微服務(wù)顯示在網(wǎng)頁中,說明用戶微服務(wù)確實(shí)注冊到了 eureka 服務(wù)中; 6、在瀏覽器輸入地址 http://localhost:8761/eureka/apps/springms-provider-user 可以看到自定義的四、下載地址信息以及用戶微服務(wù)的相關(guān)信息成功的被展示出來了; ****************************************************************************************/ /**************************************************************************************** 二、用戶微服務(wù)接口測試(給 springms-discovery-eureka-ha 模塊做測試,測試EurekaClient客戶端注冊進(jìn)EurekaServer高可用集群中): 1、注解:EnableEurekaClient 2、修改 defaultZone 的接入地址值如下: ################################################################################### # 測試二:測試EurekaClient客戶端注冊進(jìn)EurekaServer高可用集群中 defaultZone: http://admin:admin@peer1:8401/eureka,,http://admin:admin@peer2:8402/eureka,,http://admin:admin@peer3:8403/eureka ################################################################################### 3、啟動(dòng) springms-discovery-eureka-ha 模塊服務(wù),啟動(dòng)3個(gè)端口; 4、啟動(dòng) springms-provider-user 模塊服務(wù),啟動(dòng)1個(gè)端口; 5、在瀏覽器輸入地址http://localhost:7900/simple/1 可以看到信息成功的被打印出來,說明用戶微服務(wù)正常; 6、在瀏覽器輸入地址 http://localhost:8401 并輸入用戶名密碼 admin/admin 進(jìn)入Eureka微服務(wù)顯示在網(wǎng)頁中,說明用戶微服務(wù)確實(shí)注冊到了 eureka 服務(wù)中; 7、在瀏覽器輸入地址 http://localhost:8401/eureka/apps/springms-provider-user 可以看到自定義的 信息以及用戶微服務(wù)的相關(guān)信息成功的被展示出來了; 8、在瀏覽器輸入地址 http://localhost:8402/eureka/apps/springms-provider-user 可以看到自定義的 信息以及用戶微服務(wù)的相關(guān)信息成功的被展示出來了; 9、在瀏覽器輸入地址 http://localhost:8403/eureka/apps/springms-provider-user 可以看到自定義的 信息以及用戶微服務(wù)的相關(guān)信息成功的被展示出來了; ****************************************************************************************/
https://gitee.com/ylimhhmily/SpringCloudTutorial.git
SpringCloudTutorial交流QQ群: 235322432
SpringCloudTutorial交流微信群: 微信溝通群二維碼圖片鏈接
歡迎關(guān)注,您的肯定是對我最大的支持!!!
文章版權(quán)歸作者所有,未經(jīng)允許請勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/70445.html
摘要:第篇電影微服務(wù),也注冊到中,通過協(xié)議訪問已注冊到生態(tài)圈中的用戶微服務(wù)一大致介紹在服務(wù)治理框架中,微服務(wù)與微服務(wù)之間通過協(xié)議進(jìn)行通信用戶微服務(wù)作為消費(fèi)方電影微服務(wù)作為提供方都注冊到中在電影微服務(wù)層通過的硬編碼配置方式實(shí)現(xiàn)服務(wù)之間的通信二實(shí)現(xiàn) SpringCloud(第 005 篇)電影微服務(wù),也注冊到 EurekaServer 中,通過 Http 協(xié)議訪問已注冊到生態(tài)圈中的用戶微服務(wù) -...
摘要:第篇服務(wù)發(fā)現(xiàn)服務(wù)端微服務(wù)一大致介紹眾所周知,在現(xiàn)在互聯(lián)網(wǎng)開發(fā)中,訪問地址的和端口號(hào)是動(dòng)態(tài)的,一個(gè)服務(wù)停掉再重新啟用后和端口就可能發(fā)生了改變,所以用硬編碼是肯定不行了。再對外提供服務(wù)的時(shí)候便不再使用掛掉的服務(wù)提供者的和端口。 SpringCloud(第 003 篇)服務(wù)發(fā)現(xiàn)服務(wù)端EurekaServer微服務(wù) - 一、大致介紹 1、眾所周知,在現(xiàn)在互聯(lián)網(wǎng)開發(fā)中,訪問地址的IP和端口號(hào)是...
SpringCloud(第 051 篇)EurekaServer集群高可用注冊中心以及簡單的安全認(rèn)證 - 一、大致介紹 1、前面章節(jié)分析了一下 Eureka 的源碼,我們是不是在里面注意到了 Peer 節(jié)點(diǎn)的復(fù)制,為什么要復(fù)制節(jié)點(diǎn)同步信息呢,其實(shí)就是為了同一個(gè)集群之間的EurekaServer一致性方案的一個(gè)實(shí)現(xiàn); 2、于是我們在本章節(jié)就真正的來通過代碼來實(shí)現(xiàn)一下EurekaServer之間的高...
摘要:第篇電影微服務(wù),使用在客戶端進(jìn)行負(fù)載均衡一大致介紹是發(fā)布的云中間層服務(wù)開源項(xiàng)目,主要功能是提供客戶端負(fù)載均衡算法。而被注解后,能過用負(fù)載均衡,主要是維護(hù)了一個(gè)被注解的列表,并給列表中的添加攔截器,進(jìn)而交給負(fù)載均衡器去處理。 SpringCloud(第 006 篇)電影微服務(wù),使用 Ribbon 在客戶端進(jìn)行負(fù)載均衡 - 一、大致介紹 1、Ribbon 是 Netflix 發(fā)布的云中間層...
摘要:英文意思就是說提供一個(gè)回退機(jī)制當(dāng)路由后面的服務(wù)發(fā)生故障時(shí)。注意注解能注冊到服務(wù)上,是因?yàn)樵撟⒔獍丝蛻舳说淖⒔猓撌且粋€(gè)復(fù)合注解。地址可以查看該微服務(wù)網(wǎng)關(guān)代理了多少微服務(wù)的。 SpringCloud(第 025 篇)Zuul 路由后面的微服務(wù)掛了后,Zuul 提供了一種回退機(jī)制來應(yīng)對熔斷處理 - 一、大致介紹 1、在一些不穩(wěn)定因素導(dǎo)致路由后面的微服務(wù)宕機(jī)或者無響應(yīng)時(shí),zuul 就會(huì)累...
閱讀 2969·2021-09-23 11:32
閱讀 2936·2021-09-22 15:12
閱讀 1717·2019-08-30 14:07
閱讀 3459·2019-08-29 16:59
閱讀 1648·2019-08-29 11:11
閱讀 2313·2019-08-26 13:50
閱讀 2433·2019-08-26 13:49
閱讀 2628·2019-08-26 11:49