spring-cloud学习

本文介绍了如何使用SpringSecurity保护Eureka和ConfigServer等微服务资源,包括如何在基于WebFlux的Gateway中实现安全认证,以及如何配置ConfigServer的discovery机制。同时,还提到了管理Actuator的健康和信息端点的合理使用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

1.用springsecurity保护eureka、config-server等资源

这里注意一下,如果要在gateway用security的话,由于gateway是webflux,

UserDetailsService应该如下
    @Bean
    public MapReactiveUserDetailsService userDetailsService(PasswordEncoder passwordEncoder) {
        UserDetails user = User.withUsername("user")
                .password(passwordEncoder.encode("pwd"))
                .roles("USER")
                .build();
        return new MapReactiveUserDetailsService(user);
    }

2.引用config-server时,最好利用discovery机制,毕竟config-server也是个服务,也会“飘移”。配置如下

spring:  
  cloud:
    config:
      username: 'user' #认证为 http basic方式,当然config-server无认证要求就不必了
      password: 'pwd'
      discovery:
        enabled: true
        service-id: 'CONFIG-SERVER'

3.actuator要合理,需要什么打开什么,*只做测试。一般health、info就够用了

management:
  endpoint:
    health:
      show-details: always
  endpoints:
    web:
      exposure:
        include:
          - 'health'
          - 'info'

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值