您好,登錄后才能下訂單哦!
這篇文章給大家介紹怎么在Spring boot Admin中使用eureka監(jiān)控服務,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
環(huán)境介紹
IDE:intellij idea
jdk: java8
maven:3.3.9
spring boot:1.5.6
spring cloud:Edgware.BUILD-SNAPSHOT
搭建過程
1.對于之前的eureka-client服務我們不需要進行任何更改,保持原來的狀態(tài)就行。
2.搭建spring boot admin服務(也是一個eureka服務)
3.測試結果
spring boot admin模塊
這里一定要注意,到目前為止(2017年10月31日10點16分),我們不能對spring boot admin 使用Edgware.BUILD-SNAPSHOT版本的eureka,會報錯,因為目前最新版的codecentric1.5.4版本不兼容的問題.
所以這里要對admin依賴的spring cloud版本降級,我使用的是Dalton.SR4版本。沒有問題!
pom文件
<dependencies> <!--admin的服務--> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server</artifactId> <version>1.5.4</version> </dependency> <!--admin的ui依賴--> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-server-ui</artifactId> <version>1.5.4</version> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> </dependency> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-eureka</artifactId> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>${spring-cloud.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
application
@Configuration @EnableAutoConfiguration @EnableDiscoveryClient @EnableAdminServer public class AdminServerApplication { public static void main(String[] args) { SpringApplication.run(AdminServerApplication.class, args); } }
@EnableAdminServer 用來標記為admin應用的
其他的注解都和普通的eureka client 應用一致
yml文件
spring: application: name: admin-server boot: admin: routes: endpoints: env,metrics,trace,dump,jolokia,info,configprops,trace,logfile,refresh,flyway,liquibase,heapdump,hystrix.stream eureka: client: serviceUrl: defaultZone: http://localhost:8761/eureka/ #測試,不使用密碼 management.security.enabled: false server: port: 8089
結果展示
到此配置結束,我們依次啟動eureka server,admin server,eureka client``eureka client2的應用
1.首先去eureka注冊中心 http://localhost:8761/查看是否將所有的應用都已經(jīng)注冊
我們的admin-server也是作為一個服務被注冊進來,這樣才能發(fā)揮eureka的服務發(fā)現(xiàn)功能
2.查看admin server中的監(jiān)控ui http://localhost:8089
關于怎么在Spring boot Admin中使用eureka監(jiān)控服務就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。