1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
| package com.example.oauth2resourceserverwebfluxdemo.config;
import com.example.oauth2resourceserverwebfluxdemo.security.CustomReactiveAuthorizationManager; import com.example.oauth2resourceserverwebfluxdemo.security.CustomServerAccessDeniedHandler; import com.example.oauth2resourceserverwebfluxdemo.security.CustomServerAuthenticationEntryPoint; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration; import org.springframework.security.config.annotation.method.configuration.EnableReactiveMethodSecurity; import org.springframework.security.config.web.server.ServerHttpSecurity; import org.springframework.security.core.authority.SimpleGrantedAuthority; import org.springframework.security.oauth2.server.resource.authentication.JwtAuthenticationToken; import org.springframework.security.web.server.SecurityWebFilterChain; import reactor.core.publisher.Mono;
import java.util.Collection; import java.util.stream.Collectors;
@Configuration
@EnableReactiveMethodSecurity public class ReactiveSecurityConfig {
@Autowired private CustomServerAccessDeniedHandler customServerAccessDeniedHandler;
@Autowired private CustomServerAuthenticationEntryPoint customServerAuthenticationEntryPoint;
@Autowired private CustomReactiveAuthorizationManager customReactiveAuthorizationManager;
@Bean SecurityWebFilterChain springSecurityFilterChain(ServerHttpSecurity http) { return http.authorizeExchange() .pathMatchers("/res/**", "/userInfo/**").authenticated() .pathMatchers("/user/**").hasAnyRole("admin", "user") .pathMatchers("/swagger-ui/**", "/v3/api-docs**").permitAll()
.anyExchange().access(customReactiveAuthorizationManager) .and() .csrf().disable() .httpBasic().disable() .formLogin().disable() .cors() .and()
.oauth2ResourceServer() .jwt() .jwtAuthenticationConverter(jwt -> { Collection<SimpleGrantedAuthority> authorities = ((Collection<String>) jwt.getClaims() .get("authorities")).stream() .map(SimpleGrantedAuthority::new) .collect(Collectors.toSet());
Collection<SimpleGrantedAuthority> scopes = ((Collection<String>) jwt.getClaims() .get("scope")).stream().map(scope -> new SimpleGrantedAuthority("SCOPE_" + scope)) .collect(Collectors.toSet()); authorities.addAll(scopes); return Mono.just(new JwtAuthenticationToken(jwt, authorities)); }) .and() .accessDeniedHandler(customServerAccessDeniedHandler) .authenticationEntryPoint(customServerAuthenticationEntryPoint) .and().build(); } }
|