Spring Cloud:如何将请求和身份验证从网关路由到微服务?

问题描述 投票:0回答:1

我有两个微服务:GatewayHelloWorld。我使用发生在Gateway微服务中的基本身份验证。然后请求被路由到 HelloWorld 微服务。但问题是:请求已路由,但身份验证未路由。

你好世界

@RequestMapping("/")
@RestController
public class HelloController {

    @GetMapping("/hello")
    public String hello() {
        return "Hello, world!";
    }

    @GetMapping("/secured")
    public String secured(Authentication auth) {
        // !!! auth == null -> NullPointerException !!!
        return "This page is secured. Your role is "
                + auth.getAuthorities()
                .stream()
                .map(GrantedAuthority::getAuthority)
                .collect(Collectors.joining(", ")) + ".";
    }
}

网关

@Configuration
@EnableWebFluxSecurity
public class WebSecurityConfig {

    @Bean
    public SecurityWebFilterChain securityFilterChain(ServerHttpSecurity http, ReactiveAuthenticationManager authManager) throws Exception {
        return http
                .authorizeExchange(request -> request
                        .pathMatchers("/hello").permitAll()
                        .pathMatchers("/secured").authenticated()
                        .anyExchange().permitAll()
                )
                .csrf(csrf -> csrf.disable())
                .httpBasic(httpBasic -> httpBasic.authenticationManager(authManager))
                .build();
    }

    // some security configuration ...
}
@SpringBootApplication
@EnableDiscoveryClient
public class GatewayApplication {

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

    @Bean
    public RouteLocator myRoutes(RouteLocatorBuilder builder) {
        return builder.routes()
                .route(p -> p
                        .path("/**")
                        .uri("http://localhost:8081"))
                .build();
    }

}

我想了解的是:

  • 如何将身份验证从Gateway“发送”到另一个微服务,而不需要再次对用户进行身份验证
  • Gateway 微服务中对用户进行身份验证是否很常见,或者我应该在每个其他微服务中复制身份验证机制。

附注请不要回答“你应该使用 JWT”之类的问题。我想找到适合我当前情况的解决方案(使用基本身份验证)。但我很高兴收到一些建议以及我的问题的答案。 :)

java spring-security microservices spring-cloud spring-cloud-gateway
1个回答
0
投票

前端将用户信息存储在cookie中并传递给网关。网关解析用户信息后,在header或cookie中设置用户名userId等信息。网关之后的服务直接从 header/cookie 中提取用户信息。这是我的简单方案,大家可以根据自己的需要进行修改。希望对您有帮助。

最新问题
© www.soinside.com 2019 - 2025. All rights reserved.