您好,登錄后才能下訂單哦!
本篇內容介紹了“如何創建SpringBoot Admin應用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
一、SrpingBoot Admin 介紹
Spring Boot Admin 是一個開源社區項目,用于管理和監控 SpringBoot 應用程序,展示Spring Boot Admin Client 的 Actuator 端點上的一些監控信息。
了解springcloud架構可以加求求:三五三六二四七二五九
它為應用程序提供以下功能:
顯示應用健康狀況
關注并下載日志文件
查看jvm系統和環境屬性
查看Spring Boot配置屬性
支持Spring Cloud的postable / env-和/ refresh-endpoint
輕松的日志級管理
二、SrpingCloud Kubernetes 介紹
Spring Cloud Kubernetes 提供 Kubernetes 環境下服務發現的 Spring Cloud 通用接口實現。主要目的是促進在 Kubernetes 中運行的 Spring Cloud 和 Spring Boot 應用程序的集成。
這里我們主要用 SpringCloud Kubernetes 來為 SpringBoot Admin 提供 Kubernetes 環境下的服務發現。
三、創建 SpringBoot Admin 應用
創建 SpringBoot Admin 應用,且引入 SpringCloud Kubernetes 作為服務發現。
Maven 引入相關依賴
在 Maven 中引入 “spring-boot-admin-starter-server” 與 “spring-cloud-kubernetes-discovery” 依賴。
<?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>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.6.RELEASE</version> <relativePath/> </parent> <groupId>club.mydlq</groupId> <artifactId>springboot-admin-k8s</artifactId> <version>0.0.2</version> <name>springboot-admin-k8s</name> <description>demo</description> <properties> <java.version>1.8</java.version> </properties> <dependencies> <!--web--> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!--SpringBoot Admin--> <dependency> <groupId>de.codecentric</groupId> <artifactId>spring-boot-admin-starter-server</artifactId> <version>2.1.5</version> </dependency> <!--SpringCloud Kubernetes--> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-kubernetes-discovery</artifactId> <version>1.0.2.RELEASE</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-maven-plugin</artifactId> </plugin> </plugins> </build> </project>
加上兩個參數:
spring.cloud.kubernetes.discovery.primaryPortName:
spring.cloud.kubernetes.discovery.serviceLabels:
server: port: 8080 management: server: port: 8081 #---指定監控數據端口為8081,避免和 server.port 一致產生風險 endpoints: web: exposure: include: "*" spring: application: name: springboot-admin-k8s cloud: kubernetes: discovery: primaryPortName: management #---按設要監控 Service 的端口名稱 serviceLabels: admin: enabled #---設置要監控 Service 的 Label 標簽
啟動類
需要加上四個注解:
@SpringBootApplication:開啟 SpringBoot 相關注解,會自動配置相關信息。
@EnableDiscoveryClient:開啟 Spring服務發現機制。
@EnableAdminServer:開啟 SpringBoot Admin。
@EnableScheduling:開啟定時任務,不加此注解服務發現不會執行定時刷新。
import de.codecentric.boot.admin.server.config.EnableAdminServer; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import org.springframework.cloud.client.discovery.EnableDiscoveryClient; import org.springframework.scheduling.annotation.EnableScheduling; @SpringBootApplication @EnableDiscoveryClient @EnableAdminServer @EnableScheduling public class Application { public static void main(String[] args) { SpringApplication.run(Application.class, args); } }
“如何創建SpringBoot Admin應用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。