spring-boot-admin 2.0小试牛刀
生活随笔
收集整理的這篇文章主要介紹了
spring-boot-admin 2.0小试牛刀
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
為什么80%的碼農都做不了架構師?>>> ??
序
本文主要展示下spring-boot-admin 2.0版本的新特性
server實例
maven
<dependency><groupId>de.codecentric</groupId><artifactId>spring-boot-admin-starter-server</artifactId><version>2.0.0</version></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-webflux</artifactId></dependency><dependency><groupId>org.jolokia</groupId><artifactId>jolokia-core</artifactId></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency>配置
spring:application:name: spring-boot-admin-server eureka:instance:preferIpAddress: trueleaseRenewalIntervalInSeconds: 10client:registryFetchIntervalSeconds: 5serviceUrl:defaultZone: ${EUREKA_SERVICE_URL:http://localhost:8761}/eureka/management:endpoints:web:exposure:include: "*"endpoint:health:show-details: ALWAYSconfig
@Configuration @EnableAutoConfiguration @EnableAdminServer public class AdminServerApplication {public static void main(String[] args) {SpringApplication.run(AdminServerApplication.class, args);} }client實例
maven
<dependency><groupId>de.codecentric</groupId><artifactId>spring-boot-admin-starter-client</artifactId><version>2.0.0</version></dependency><dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-actuator</artifactId></dependency><dependency><groupId>org.jolokia</groupId><artifactId>jolokia-core</artifactId></dependency>配置
spring:boot:admin:client:url: http://localhost:8080這里配置admin server的地址
運行實例
wallboard
wallboard 實例詳情
applications
journal
小結
新版前端改用vue.js進行了重構,后端的話,使用event sourcing的原則進行了重構,支持spring5,移除了spring-cloud-starter依賴,另外使用WebClient替代了zuul等等,具體詳見spring-boot-admin-changes-with-2-x。
對于client端來說,目前還不能像1.x版本那樣依靠Spring Cloud Discovery進行自動注冊,目前需要使用spring-boot-admin-starter-client。
doc
- spring-boot-admin-changes-with-2-x
- spring-boot-admin/releases/tag/2.0.0
轉載于:https://my.oschina.net/go4it/blog/1816348
總結
以上是生活随笔為你收集整理的spring-boot-admin 2.0小试牛刀的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Java构造方法与析构方法实例剖析
- 下一篇: 聊聊ExecutorService的监控