場景 SpringCloud-服務註冊與實現-Eureka創建服務註冊中心(附源碼下載): https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/102535957 上面已經搭建好服務註冊中心,開始創建服務提供者。 當 Client 向 ...
場景
SpringCloud-服務註冊與實現-Eureka創建服務註冊中心(附源碼下載):
https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/102535957
上面已經搭建好服務註冊中心,開始創建服務提供者。
當 Client 向 Server 註冊時,它會提供一些元數據,例如主機和埠,URL,主頁等。Eureka Server 從每個 Client 實例接收心跳消息。 如果心跳超時,則通常將該實例從註冊 Server 中刪除。
註:
博客:
https://blog.csdn.net/badao_liumang_qizhi
關註公眾號
霸道的程式猿
獲取編程相關電子書、教程推送與免費下載。
實現
參照上面創建服務註冊中心的流程,再新建目錄hello-spring-cloud-service-admin
然後依次新建pom.xml並將其進行托管,新建src/main/java目錄和src/main/resources目錄並分別進行目錄設置。
然後在java下新建包,包下新建啟動類,在resources下新建配置文件application.yml。
完成後的目錄為:
其中pom.xml代碼:
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.badao</groupId> <artifactId>hello-spring-cloud-dependencies</artifactId> <version>1.0.0-SNAPSHOT</version> <relativePath>../hello-spring-cloud-dependencies/pom.xml</relativePath> </parent> <artifactId>hello-spring-cloud-service-admin</artifactId> <packaging>jar</packaging> <name>hello-spring-cloud-service-admin</name> <url>https://blog.csdn.net/badao_liumang_qizhi</url> <inceptionYear>2019-Now</inceptionYear> <dependencies> <!-- Spring Boot Begin --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> </dependency> <!-- Spring Boot End --> <!-- Spring Cloud Begin --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId> </dependency> <!-- Spring Cloud End --> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> <configuration> <mainClass>com.badao.hello.spring.cloud.service.admin.ServiceAdminApplication</mainClass> </configuration> </plugin> </plugins> </build> </project>
註:
這裡的parent標簽要與上面的統一的依賴管理對應起來。
要修改指定的程式入口類為自己相應的路徑。
然後應用啟動類的代碼:
package com.badao.hello.spring.cloud.service.admin; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.netflix.eureka.EnableEurekaClient; @SpringBootApplication @EnableEurekaClient public class ServiceAdminApplication { public static void main(String[] args) { SpringApplication.run(ServiceAdminApplication.class, args); } }
註:
要使用@EnableEurekaClient註解聲明這是一個Eureka Client,用來提供服務。
然後是配置文件代碼:
spring: application: name: hello-spring-cloud-service-admin server: port: 8762 eureka: client: serviceUrl: defaultZone: http://localhost:8761/eureka/
註:
1.服務註冊與發現是根據上面的name去尋找。
2.port表示埠號。
3.hostname表示eureka服務的地址,這裡是本地所以是localhost。
4.serviceURL設置eureka的地址,與上面創建服務註冊中心時的URL對應。
然後打開Maven面板,雙擊Install,不然會提示程式找不到啟動類。
這時如果啟動應用程式,訪問8762什麼也沒有,因為沒有提供具體的服務,但是訪問8761能看到服務已經被註冊和發現了。
接下來新建controller包,併在包下新建AdminController
package com.badao.hello.spring.cloud.service.admin.controller; import org.springframework.beans.factory.annotation.Value; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; @RestController public class AdminController { @Value("${server.port}") private String port; @RequestMapping(value = "hi", method = RequestMethod.GET) public String sayHi(@RequestParam(value = "message") String message) { return String.format("Hi,your message is : %s i am from port : %s", message, port); } }
然後停止掉原來的啟動程式,將項目重新install,然後將上面的服務與註冊發現的eureka服務啟動,然後再啟動當前服務提供者主程式。
打開瀏覽器輸入:
localhost:8762/hi?message=badao
源碼下載
https://download.csdn.net/download/badao_liumang_qizhi/11859914