1、现状

痛点 ①:druid 的账号体系支持

痛点 ②:spring boot admin 的账号体系支持

2、目标

痛点 ① 的解决方案:DONE,druid 内置了


痛点 ② 的解决方案:

https://docs.spring-boot-admin.com/current/security.html

1、infra biz 模块,注释掉

registry.antMatchers(adminSeverContextPath).anonymous()
                        .antMatchers(adminSeverContextPath + "/**").anonymous();

2.1、application.yaml 中,在 spring 下,新增 security 账号

   security:
    user:
      name: admin
      password: $2a$04$P5pr4Wan2HRVLd2BItbicOhJQH1mRhrBYf3Nne9HCyn07cDtwa3Qi

注意,password 是需要加密过的