91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》
  • 首頁 > 
  • 教程 > 
  • 開發技術 > 
  • Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析

Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析

發布時間:2021-09-10 13:26:37 來源:億速云 閱讀:214 作者:小新 欄目:開發技術

這篇文章主要介紹了Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

SpringBootAdmin是一個針對 Spring Boot 的 Actuator 接口進行 UI 美化封裝的監控工具,它可以在列表中瀏覽所有被監控 spring-boot 項目的基本信息、詳細的 Health 信息、內存信息、JVM 信息、垃圾回收信息、各種配置信息(比如數據源、緩存列表和命中率)等。可分為服務端(spring-boot-admin-server)和客戶端(spring-boot-admin-client),服務端和客戶端之間采用http通訊方式實現數據交互。服務端server需要單獨啟動一個服務,而客戶端client只需要集成到各個微服務中。

1、初識SpringBootAdmin

首先我們需要了解到Spring Boot Admin應用程序是能夠提供以下功能供我們使用:

  • 顯示健康狀況

  • 顯示詳細信息

  • JVM和內存指標

  • micrometer.io指標

  • 數據源指標

  • 緩存指標

  • 顯示內部編號

  • 關注并下載日志文件

  • 查看JVM系統和環境屬性

  • 查看Spring Boot配置屬性

  • 支持Spring Cloud的可發布/ env-&/ refresh-endpoint

  • 輕松的日志級別管理

  • 與JMX-beans交互

  • 查看線程轉儲

  • 查看http-traces

  • 查看審核事件

  • 查看http端點

  • 查看預定的任務

  • 查看和刪除活動會話(使用spring-session)

  • 查看Flyway / Liquibase數據庫遷移

  • 下載heapdump

  • 狀態更改通知(通過電子郵件,Slack,Hipchat等)

  • 狀態更改的事件日志(非持久性)

2、搭建服務端--POM文件中添加相關依賴

<dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>de.codecentric</groupId>
            <artifactId>spring-boot-admin-starter-server</artifactId>
            <version>2.5.1</version>
        </dependency>

3、修改服務端application啟動類

在咱們啟動類上面新增@EnableAdminServer注解,進行啟用SpringBootAdminServer服務端

@SpringBootApplication
@EnableAdminServer
public class BootAdminServerApplication {

    public static void main(String[] args) {
        SpringApplication.run(BootAdminServerApplication.class, args);
    }
}

4、配置security安全信息

在application.properties文件中新增以下配置信息。

# 應用程序端口
server.port=8085
# 配置一個賬號和密碼
spring.security.user.name=admin
spring.security.user.password=admin

初始化SecuritySecureConfig配置(如未初始化是看不到帶SpringBootAdmin Logo登錄頁面的)

@Configuration
    public static class SecuritySecureConfig extends WebSecurityConfigurerAdapter {
        private final String adminContextPath;

        public SecuritySecureConfig(AdminServerProperties adminServerProperties) {
            this.adminContextPath = adminServerProperties.getContextPath();
        }

        @Override
        protected void configure(HttpSecurity http) throws Exception {
            SavedRequestAwareAuthenticationSuccessHandler successHandler = new SavedRequestAwareAuthenticationSuccessHandler();
            successHandler.setTargetUrlParameter("redirectTo");

            http.authorizeRequests()
                    .antMatchers(adminContextPath + "/assets/**").permitAll()
                    .antMatchers(adminContextPath + "/login").permitAll()
                    .anyRequest().authenticated()
                    .and()
                    .formLogin().loginPage(adminContextPath + "/login").successHandler(successHandler).and()
                    .logout().logoutUrl(adminContextPath + "/logout").and()
                    .httpBasic().and()
                    .csrf().disable();
        }
    }

5、啟動server服務端

服務啟動后,在瀏覽器中輸入以下地址。我們是可以看見對應登錄頁面,對應賬號密碼就是咱們在properties文件中配置的。

http://127.0.0.1:8085/login

Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析

登錄后可以看到應用列表數量是空的,此時咱們需要開始搭建咱們的Client客戶端了。

Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析

6、搭建client客戶端

在pom文件中新增以下依賴信息。(注意版本要與server端保持一致)

<!-- SpringBootAdmin管控臺 -->
        <dependency>
            <groupId>de.codecentric</groupId>
            <artifactId>spring-boot-admin-starter-client</artifactId>
            <version>2.5.1</version>
        </dependency>

修改properties文件

spring.boot.admin.client.url=http://127.0.0.1:8085
spring.boot.admin.client.username=admin
spring.boot.admin.client.password=admin
spring.application.name=spring-boot-application
management.endpoints.web.exposure.include=*

spring.boot.admin.client.url 指向我們上面服務端的項目接口路徑。management.endpoints.web.exposure.include 表示將所有端口都暴露出來,可以被監控到。spring.application.name 表示改項目在spring-boot-admin 上的的顯示名稱。

spring.boot.admin.client.username 和password 就是設置的用戶名和密碼了,這里需要注意的是,如果admin-server 中沒有集成 security 的話,不用配置用戶名和密碼也可以注冊進去,在服務端可以監控到,但如果admin-server 集成了security,就需要保證client 中配置的用戶名和server 中配置的用戶名密碼保持一致。

Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析

Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析

Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析

Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析

把client客戶端啟動后,會自動注冊到咱們server服務端,咱們可以通過server服務端應用墻找到對應服務查看詳細指標信息。(題外話:期間博主是有遇到客戶端啟動后,服務端無法采集到對應指標信息。原因是由于client客戶端有配置security,沒有給對應探針接口放行。如大家客戶端有用到security的話,需要在security配置中放行以下兩個接口信息。)

Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析

Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析

// 對應匿名+已授權均可訪問
                .antMatchers("/actuator/**","/instances").permitAll()

感謝你能夠認真閱讀完這篇文章,希望小編分享的“Java SpringBoot快速集成SpringBootAdmin管控臺監控服務的示例分析”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

克山县| 舒城县| 巍山| 慈溪市| 织金县| 贵州省| 大英县| 老河口市| 莱西市| 饶河县| 湛江市| 明水县| 弥渡县| 成武县| 稷山县| 砚山县| 开化县| 崇左市| 子洲县| 卢氏县| 吉首市| 马尔康县| 栾城县| 乾安县| 安徽省| 永丰县| 浦城县| 崇明县| 东台市| 锡林浩特市| 尚志市| 手游| 红河县| 始兴县| 伊金霍洛旗| 定南县| 涞源县| 西乌| 彰化县| 遂平县| 都兰县|