gpt4 book ai didi

java - 模块化 Spring Security SecurityWebFilterChain

转载 作者:行者123 更新时间:2023-12-02 09:45:00 26 4
gpt4 key购买 nike

我们的 Spring Security 配置文件变得越来越大,我们希望将其分成更小的部分。现在我们有以下内容:

public SecurityWebFilterChain securityWebFilterChain(ServerHttpSecurity http) {
http.securityMatcher(ServerWebExchangeMatchers.pathMatchers("/api/**"))
.authenticationManager(this.authenticationManager);

http.authorizeExchange()
.pathMatchers(HttpMethod.GET, "/api/serviceA/**")
.hasAuthority("PROP_A");

http.authorizeExchange()
.pathMatchers(HttpMethod.GET, "/api/serviceB/**")
.hasAuthority("PROP_B");

http.authorizeExchange().pathMatchers(HttpMethod.POST, "/api/login", "/api/logout", "/api/forgotPassword", "/api/confirmForgotPassword").permitAll();

http.csrf()
.disable()
.formLogin()
.authenticationEntryPoint(new HttpStatusServerEntryPoint(HttpStatus.UNAUTHORIZED))
.requiresAuthenticationMatcher(
ServerWebExchangeMatchers.pathMatchers(HttpMethod.POST, "/api/login"))
.authenticationFailureHandler(CustomSpringSecurity::onAuthenticationFailure)
.authenticationSuccessHandler(CustomSpringSecurity::onAuthenticationSuccess)
.and()
.logout()
.logoutUrl("/api/logout")
.logoutSuccessHandler(new CustomLogoutSuccessHandler(HttpStatus.OK));

final SecurityWebFilterChain build = http.build();

build
.getWebFilters()
.collectList()
.subscribe(
webFilters -> {
for (WebFilter filter : webFilters) {
if (filter instanceof AuthenticationWebFilter) {
AuthenticationWebFilter awf = (AuthenticationWebFilter) filter;
awf.setServerAuthenticationConverter(CustomSpringSecurity::convert);
}
}
});

return build;
}

我们想使用 securityMatcher/api/seviceA/**/api/seviceB/** 分解到那里自己的SecurityWebFilterChain @Beans

但是我们遇到的问题是配置中存在额外的配置。我们希望最终结果如下所示。

    public SecurityWebFilterChain securityWebFilterChainForServiceA(ServerHttpSecurity http) {
http.securityMatcher(ServerWebExchangeMatchers.pathMatchers("/api/serviceA/**"));

http.authorizeExchange()
.pathMatchers(HttpMethod.GET, "/api/serviceA/**")
.hasAuthority("PROP_A");
return http.build();
}

我们希望端点的所有其他配置都是隐式的。

如何在 Spring Security 中实现这样的模块化?

最佳答案

您可以像这样指定一个接口(interface):

    public interface HttpSecurityConfig {
Consumer<ServerHttpSecurity> configuration();
}

然后创建一个类,为每个端点实现此功能,您可以将其作为 bean 注入(inject):

    @Component
public class ServiceASecurityConfig implements HttpSecurityConfig {
@Override
public Consumer<ServerHttpSecurity> configuration() {
return (http) -> {

http.authorizeExchange()
.pathMatchers(HttpMethod.GET, "/api/serviceA/**")
.hasAuthority("PROP_A");
};
}
}

@Component
public class ServiceBSecurityConfig implements HttpSecurityConfig {
@Override
public Consumer<ServerHttpSecurity> configuration() {
return (http) -> {

http.authorizeExchange()
.pathMatchers(HttpMethod.GET, "/api/serviceB/**")
.hasAuthority("PROP_B");
};
}
}

最后修改您的 SecurityWebFilterChain 以便它注入(inject) HttpSecurityConfig 类型的所有 bean 并应用配置,如下所示:

public SecurityWebFilterChain securityWebFilterChain(ServerHttpSecurity http, final List<HttpSecurityConfig> httpConfigurations) {
http.securityMatcher(ServerWebExchangeMatchers.pathMatchers("/api/**"))
.authenticationManager(this.authenticationManager);

// This line replaces the individual configurations in your original question
httpConfigurations.forEach(config -> config.configuration().accept(http));

http.authorizeExchange().pathMatchers(HttpMethod.POST, "/api/login", "/api/logout", "/api/forgotPassword", "/api/confirmForgotPassword").permitAll();

http.csrf()
.disable()
.formLogin()
.authenticationEntryPoint(new HttpStatusServerEntryPoint(HttpStatus.UNAUTHORIZED))
.requiresAuthenticationMatcher(
ServerWebExchangeMatchers.pathMatchers(HttpMethod.POST, "/api/login"))
.authenticationFailureHandler(CustomSpringSecurity::onAuthenticationFailure)
.authenticationSuccessHandler(CustomSpringSecurity::onAuthenticationSuccess)
.and()
.logout()
.logoutUrl("/api/logout")
.logoutSuccessHandler(new CustomLogoutSuccessHandler(HttpStatus.OK));

final SecurityWebFilterChain build = http.build();

build
.getWebFilters()
.collectList()
.subscribe(
webFilters -> {
for (WebFilter filter : webFilters) {
if (filter instanceof AuthenticationWebFilter) {
AuthenticationWebFilter awf = (AuthenticationWebFilter) filter;
awf.setServerAuthenticationConverter(CustomSpringSecurity::convert);
}
}
});

return build;
}

关于java - 模块化 Spring Security SecurityWebFilterChain,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56730583/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com