成人国产在线小视频_日韩寡妇人妻调教在线播放_色成人www永久在线观看_2018国产精品久久_亚洲欧美高清在线30p_亚洲少妇综合一区_黄色在线播放国产_亚洲另类技巧小说校园_国产主播xx日韩_a级毛片在线免费

資訊專欄INFORMATION COLUMN

Spring Boot Admin排坑指南

CocoaChina / 3021人閱讀

摘要:其簡(jiǎn)陋的頁面讓人不忍直視,但更新到系列后,像脫胎換骨一般好用這篇博客記錄我個(gè)人在使用過程中遇到過的坑,每個(gè)坑位都會(huì)附上詳細(xì)的填坑辦法環(huán)境參數(shù)服務(wù)直接注冊(cè)失敗常見的注冊(cè)失敗問題可以分為以下兩種服務(wù)端與客戶端不在同一臺(tái)服務(wù)器上提示安全校驗(yàn)不通過

Spring Boot Admin 1.x其簡(jiǎn)陋的頁面讓人不忍直視,但更新到2.x系列后,像脫胎換骨一般好用

這篇博客記錄我個(gè)人在使用Spring Boot Admin過程中遇到過的坑,每個(gè)坑位都會(huì)附上詳細(xì)的填坑辦法

環(huán)境參數(shù):

Spring Boot 2.x

Spring Boot Admin 2.x

JDK1.8+

CentOS

服務(wù)直接注冊(cè)失敗

常見的注冊(cè)失敗問題可以分為以下兩種

Spring Boot Admin服務(wù)端與客戶端不在同一臺(tái)服務(wù)器上

提示安全校驗(yàn)不通過

第一種問題的解決辦法:

必須在客戶端配置boot.admin.client.instance.service-url屬性,讓Spring Boot Admin服務(wù)端可以通過網(wǎng)絡(luò)獲取客戶端的數(shù)據(jù)(否則默認(rèn)會(huì)通過主機(jī)名去獲?。?/p>

  boot:
    admin:
      client:
        url: ${your spring boot admin url}
        username: ${your spring boot admin username}
        password: ${your spring boot admin password}
        instance:
          prefer-ip: true
          service-url: ${your spring boot client url} 

第二種問題的解決辦法:

首先,安全檢驗(yàn)問題,其實(shí)就是現(xiàn)在服務(wù)端配置賬號(hào)密碼,然后客戶端在注冊(cè)的時(shí)候提供賬號(hào)密碼進(jìn)行登錄來完成校驗(yàn)

這個(gè)過程的實(shí)現(xiàn),作為Spring全家桶項(xiàng)目,推薦使用Spring Security來解決,所以如果出現(xiàn)校驗(yàn)失敗,那多半是Spring Security的配置出現(xiàn)問題

接下來介紹如何分別配置服務(wù)端與客戶端來處理這個(gè)問題

服務(wù)端配置

通過maven加載Spring Security依賴


  org.springframework.boot
  spring-boot-starter-security

設(shè)置服務(wù)端的用戶名和密碼(客戶端來注冊(cè)時(shí)使用此賬號(hào)密碼進(jìn)行登錄)

spring:
  security:
    user:
      name: liumapp
      password: superliumapp

編寫Spring Security配置類

import de.codecentric.boot.admin.server.config.AdminServerProperties;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
import org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler;
import org.springframework.security.web.csrf.CookieCsrfTokenRepository;

/**
 * file SecuritySecureConfig.java
 * author liumapp
 * github https://github.com/liumapp
 * email [email protected]
 * homepage http://www.liumapp.com
 * date 2018/11/29
 */
@Configuration
public class SecuritySecureConfig extends WebSecurityConfigurerAdapter {
    private final String adminContextPath;

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

    @Override
    protected void configure(HttpSecurity http) throws Exception {
        // @formatter:off
        SavedRequestAwareAuthenticationSuccessHandler successHandler = new SavedRequestAwareAuthenticationSuccessHandler();
        successHandler.setTargetUrlParameter("redirectTo");
        successHandler.setDefaultTargetUrl(adminContextPath + "/");

        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()
                .csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse())
                .ignoringAntMatchers(
                        adminContextPath + "/instances",
                        adminContextPath + "/actuator/**"
                );
        // @formatter:on
    }
}

上面這段代碼,需要大家注意的就一個(gè)AdminServerProperties類,通過瀏覽它的部分源代碼:

@ConfigurationProperties("spring.boot.admin")
public class AdminServerProperties {
    /**
     * The context-path prefixes the path where the Admin Servers statics assets and api should be
     * served. Relative to the Dispatcher-Servlet.
     */
    private String contextPath = "";
    
    /**
     * The metadata keys which should be sanitized when serializing to json
     */
    private String[] metadataKeysToSanitize = new String[]{".*password$", ".*secret$", ".*key$", ".*$token$", ".*credentials.*", ".*vcap_services$"};

    /**
     * For Spring Boot 2.x applications the endpoints should be discovered automatically using the actuator links.
     * For Spring Boot 1.x applications SBA probes for the specified endpoints using an OPTIONS request.
     * If the path differs from the id you can specify this as id:path (e.g. health:ping).
     */
    private String[] probedEndpoints = {"health", "env", "metrics", "httptrace:trace", "httptrace", "threaddump:dump", "threaddump", "jolokia", "info", "logfile", "refresh", "flyway", "liquibase", "heapdump", "loggers", "auditevents", "mappings", "scheduledtasks", "configprops", "caches", "beans"};
    
    //以下省略...
    
}

可以發(fā)現(xiàn)AdminServerProperties定義了Spring Boot Admin的配置屬性,登錄自然也是其中之一,所以我們?cè)诰帉慡pring Security配置類的時(shí)候,務(wù)必要引入AdminServerProperties

到這里,Spring Boot Admin服務(wù)端對(duì)于Spring Security的配置便結(jié)束了,接下來讓我們開始客戶端的Security配置

客戶端配置

首先對(duì)于客戶端,我們除了Spring Boot Admin Client依賴外,還需要額外引入 Spring Security依賴:


    de.codecentric
    spring-boot-admin-starter-client
    2.0.2


    org.springframework.boot
    spring-boot-starter-security

在此基礎(chǔ)上通過編寫客戶端application.yml配置文件來設(shè)置賬號(hào)密碼

spring:
  boot:
    admin:
      client:
        url: ${your sba server url}
        username: ${your sba username}
        password: ${your sba password}
        instance:
          service-base-url: ${your client url}

接下來對(duì)Client端的Spring Security做配置,允許Server端讀取actuator暴露的數(shù)據(jù)

添加一個(gè)配置類:

import org.springframework.context.annotation.Configuration;
import org.springframework.security.config.annotation.web.builders.HttpSecurity;
import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;

@Configuration
public class SecurityPermitAllConfig extends WebSecurityConfigurerAdapter {
    @Override
    protected void configure(HttpSecurity http) throws Exception {
        http.authorizeRequests().anyRequest().permitAll()
                .and().csrf().disable();
    }
}

到此,因?yàn)榘踩?yàn)證而不能注冊(cè)成功的問題便可以解決

注冊(cè)成功但無法顯示日志

這個(gè)問題產(chǎn)生原因有兩種

客戶端日志沒有以文件形式存儲(chǔ)下來

客戶端容器化部署后,日志文件沒有映射到宿主機(jī)磁盤上

針對(duì)第一種情況,解決辦法比較簡(jiǎn)單,將系統(tǒng)產(chǎn)生的日志以文件形式保存即可:

logging:
  file: ./log/client.log
  pattern:
    file: "%clr(%d{yyyy-MM-dd HH:mm:ss.SSS}){faint} %clr(%5p) %clr(${PID}){magenta} %clr(---){faint} %clr([%15.15t]){faint} %clr(%-40.40logger{39}){cyan} %clr(:){faint} %m%n%wEx"      

第二種情況較為復(fù)雜,首先要分清除是用什么工具來部署容器的,但一般而言直接通過文件映射即可

這里以docker為例,在docker內(nèi)通過設(shè)置volumes來映射日志文件

volumes:
  - ./log:/client/log/
注冊(cè)成功但信息顯示不全

偶爾也會(huì)遇到這種情況:Spring Boot Admin客戶端注冊(cè)服務(wù)端是成功的,但是統(tǒng)計(jì)頁面顯示的數(shù)據(jù)過少(可能只有日志這一欄)

造成這種問題的原因在于:我們沒有開放客戶端的actuator接口地址給服務(wù)端訪問

那么解決辦法也很簡(jiǎn)單,允許服務(wù)端訪問actuator即可

首先我們需要確保項(xiàng)目有actuator依賴(一般來說,spring-boot-admin-starter-client本身就包含這個(gè)依賴,所以不需要額外引入):


  org.springframework.boot
  spring-boot-starter-actuator

然后打開actuator的端口,在client端的配置文件中增加以下內(nèi)容:

management:
  endpoints:
    web:
      exposure:
        include: "*"

同時(shí)考慮到client與server域名存在不一樣的情況,順便把跨域也解決掉,增加跨域配置類:

import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.CorsRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**
 * @author liumapp
 * @file CorsConfig.java
 * @email [email protected]
 * @homepage http://www.liumapp.com
 * @date 2018/8/11
 */
@Configuration
public class CorsConfig implements WebMvcConfigurer {
   
    public void addCorsMappings(CorsRegistry registry) {
        registry.addMapping("/**")
                .allowCredentials(true)
                .allowedHeaders("*")
                .allowedOrigins("*")
                .allowedMethods("*");

    }
}

問題即可解決

文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。

轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/75823.html

相關(guān)文章

  • SpringBoot Admin 使用指南

    摘要:什么是是一個(gè)管理和監(jiān)控你的應(yīng)用程序的應(yīng)用程序。這些應(yīng)用程序通過通過注冊(cè)或者使用例如發(fā)現(xiàn)。剛才首頁的應(yīng)用列表后面有個(gè)紅色的,我們可以將注冊(cè)上去的應(yīng)用移除,但是只要你不把程序停掉,它立馬又會(huì)注冊(cè)上去。 showImg(http://ww3.sinaimg.cn/large/006tNc79ly1g5h6jqpgs9j30u00gwdhe.jpg); 什么是 SpringBoot Admin...

    FullStackDeveloper 評(píng)論0 收藏0
  • SpringBoot RabbitMQ 整合使用

    摘要:可以在地址看到如何使用講解下上面命令行表示控制臺(tái)端口號(hào),可以在瀏覽器中通過控制臺(tái)來執(zhí)行的相關(guān)操作。同時(shí)從控制臺(tái)可以看到發(fā)送的速率多線程測(cè)試性能開了個(gè)線程,每個(gè)線程發(fā)送條消息。 showImg(http://ww2.sinaimg.cn/large/006tNc79ly1g5jjb62t88j30u00gwdi2.jpg); 前提 上次寫了篇文章,《SpringBoot Kafka 整合...

    yuanxin 評(píng)論0 收藏0
  • Spring Boot 參考指南(通用的應(yīng)用程序?qū)傩?①)

    摘要:第章附錄附錄通用的應(yīng)用程序?qū)傩钥梢栽谖募?,文件,或作為命令行開關(guān),中指定各種屬性,本附錄提供了一個(gè)通用的屬性列表和對(duì)使用它們的底層類的引用。本示例文件僅作為指南,不要將整個(gè)內(nèi)容復(fù)制粘貼到應(yīng)用程序中,相反,只選擇你需要的屬性。 第X章. 附錄 附錄A. 通用的應(yīng)用程序?qū)傩?可以在application.properties文件,application.yml文件,或作為命令行開關(guān),中指定...

    ispring 評(píng)論0 收藏0
  • Spring Boot 參考指南(消息傳遞)

    摘要:還自動(dòng)配置發(fā)送和接收消息所需的基礎(chǔ)設(shè)施。支持是一個(gè)輕量級(jí)的可靠的可伸縮的可移植的消息代理,基于協(xié)議,使用通過協(xié)議進(jìn)行通信。 32. 消息傳遞 Spring框架為與消息傳遞系統(tǒng)集成提供了廣泛的支持,從使用JmsTemplate簡(jiǎn)化的JMS API到使用完整的基礎(chǔ)設(shè)施異步接收消息,Spring AMQP為高級(jí)消息隊(duì)列協(xié)議提供了類似的特性集。Spring Boot還為RabbitTempla...

    Doyle 評(píng)論0 收藏0
  • Spring Boot 參考指南SpringApplication)

    摘要:在創(chuàng)建之前,實(shí)際上觸發(fā)了一些事件,因此不能將偵聽器注冊(cè)為。使用的事件發(fā)布機(jī)制發(fā)送應(yīng)用程序事件,該機(jī)制的一部分確保在子環(huán)境中發(fā)布給偵聽器的事件也會(huì)在任何祖先上下文中被發(fā)布給監(jiān)聽器。 23. SpringApplication SpringApplication類提供了一種方便的方法來引導(dǎo)從main()方法開始的Spring應(yīng)用程序。在許多情況下,你可以委托給靜態(tài)SpringApplica...

    Jochen 評(píng)論0 收藏0

發(fā)表評(píng)論

0條評(píng)論

最新活動(dòng)
閱讀需要支付1元查看
<