当前位置:   article > 正文

SpringBoot实战(十四):Spring Boot Admin 集成安全模块_securitysecureconfig

securitysecureconfig

强烈推荐一个大神的人工智能的教程:http://www.captainai.net/zhanghan​

【前言】

       Spring Boot Admin做为生产级的监控工具,必然不能随便让人去操作以免误操作导致线上问题,所以有必要集成Security组件;Spring Boot Admin可以十分简单的集成这安全组件;已集成项目中,在此与大家共享;

【集成安全模块】

         一、集成安全(Security)模块

                 1、Spring Boot Admin服务端集成(以zh-monitor为例)

                      (1)Pom中增加Security依赖

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-security</artifactId>
  4. </dependency>

                      (2)配置文件(application.properties)中增加用户名和密码的设置

  1. #spring boot default user.name='user'
  2. spring.security.user.name=admin
  3. #spring boot dafault user.password 在项目启动时打印在控制台中
  4. spring.security.user.password=admin

                      (3)增加SecuritySecureConfig配置类

  1. /*
  2. * Copyright (c) 2019. zhanghan_java@163.com All Rights Reserved.
  3. * 项目名称:实战SpringBoot
  4. * 类名称:SecuritySecureConfig.java
  5. * 创建人:张晗
  6. * 联系方式:zhanghan_java@163.com
  7. * 开源地址: https://github.com/dangnianchuntian/springboot
  8. * 博客地址: https://zhanghan.blog.csdn.net
  9. */
  10. package com.zhanghan.zhmonitor.config;
  11. import de.codecentric.boot.admin.server.config.AdminServerProperties;
  12. import org.springframework.context.annotation.Configuration;
  13. import org.springframework.security.config.annotation.web.builders.HttpSecurity;
  14. import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
  15. import org.springframework.security.web.authentication.SavedRequestAwareAuthenticationSuccessHandler;
  16. import org.springframework.security.web.csrf.CookieCsrfTokenRepository;
  17. @Configuration
  18. public class SecuritySecureConfig extends WebSecurityConfigurerAdapter {
  19. private final String adminContextPath;
  20. public SecuritySecureConfig(AdminServerProperties adminServerProperties) {
  21. this.adminContextPath = adminServerProperties.getContextPath();
  22. }
  23. @Override
  24. protected void configure(HttpSecurity http) throws Exception {
  25. // @formatter:off
  26. SavedRequestAwareAuthenticationSuccessHandler successHandler = new SavedRequestAwareAuthenticationSuccessHandler();
  27. successHandler.setTargetUrlParameter("redirectTo");
  28. successHandler.setDefaultTargetUrl(adminContextPath + "/");
  29. http.authorizeRequests()
  30. .antMatchers(adminContextPath + "/assets/**").permitAll()
  31. .antMatchers(adminContextPath + "/login").permitAll()
  32. .anyRequest().authenticated()
  33. .and()
  34. .formLogin().loginPage(adminContextPath + "/login").successHandler(successHandler).and()
  35. .logout().logoutUrl(adminContextPath + "/logout").and()
  36. .httpBasic().and()
  37. .csrf().csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse())
  38. .ignoringAntMatchers(
  39. adminContextPath + "/instances",
  40. adminContextPath + "/actuator/**");
  41. // @formatter:on
  42. }
  43. }

                 2、Spring Boot Admin客户端集成(以zh-boot为例)

                      (1)在配置文件(application.properties)中增加用户名和密码

  1. #Security
  2. spring.boot.admin.client.username=admin
  3. spring.boot.admin.client.password=admin

                 3、查看效果

                      (1)启动zh-monitor

                      (2)启动zh-boot

                      (3)访问zh-monitor(http://localhost:8081

                               a.跳转至登录页面

                               b.输入admin的用户名和密码登录

         三、项目地址:

                 1、地址:https://github.com/dangnianchuntian/springboot

                 2、代码版本:1.6.0-Release

【总结】

         1、安全猛于虎,没有安全设置相当于裸奔,一般线上环境的Spring Boot Admin应该由运维统一控制,开发只能查看,如果需要更改日志级别等操作等应由技术leader批准运维统一执行;

         2、接下来会为大家共享多关于SpringBootAdmin集成告警模块。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/890033
推荐阅读
相关标签
  

闽ICP备14008679号