Class ServerHttpSecurity.OAuth2ResourceServerSpec.JwtSpec
- java.lang.Object
-
- org.springframework.security.config.web.server.ServerHttpSecurity.OAuth2ResourceServerSpec.JwtSpec
-
- Enclosing class:
- ServerHttpSecurity.OAuth2ResourceServerSpec
public class ServerHttpSecurity.OAuth2ResourceServerSpec.JwtSpec extends java.lang.Object
Configures JWT Resource Server Support
-
-
Constructor Summary
Constructors Constructor Description JwtSpec()
-
Method Summary
-
-
-
Method Detail
-
authenticationManager
public ServerHttpSecurity.OAuth2ResourceServerSpec.JwtSpec authenticationManager(ReactiveAuthenticationManager authenticationManager)
Configures theReactiveAuthenticationManager
to use- Parameters:
authenticationManager
- the authentication manager to use- Returns:
- the
JwtSpec
for additional configuration
-
jwtAuthenticationConverter
public ServerHttpSecurity.OAuth2ResourceServerSpec.JwtSpec jwtAuthenticationConverter(org.springframework.core.convert.converter.Converter<Jwt,? extends reactor.core.publisher.Mono<? extends AbstractAuthenticationToken>> jwtAuthenticationConverter)
- Parameters:
jwtAuthenticationConverter
- the converter to use- Returns:
- the
JwtSpec
for additional configuration - Since:
- 5.1.1
-
jwtDecoder
public ServerHttpSecurity.OAuth2ResourceServerSpec.JwtSpec jwtDecoder(ReactiveJwtDecoder jwtDecoder)
Configures theReactiveJwtDecoder
to use- Parameters:
jwtDecoder
- the decoder to use- Returns:
- the
JwtSpec
for additional configuration
-
publicKey
public ServerHttpSecurity.OAuth2ResourceServerSpec.JwtSpec publicKey(java.security.interfaces.RSAPublicKey publicKey)
Configures aReactiveJwtDecoder
that leverages the providedRSAPublicKey
- Parameters:
publicKey
- the public key to use.- Returns:
- the
JwtSpec
for additional configuration
-
jwkSetUri
public ServerHttpSecurity.OAuth2ResourceServerSpec.JwtSpec jwkSetUri(java.lang.String jwkSetUri)
Configures aReactiveJwtDecoder
using JSON Web Key (JWK) URL- Parameters:
jwkSetUri
- the URL to use.- Returns:
- the
JwtSpec
for additional configuration
-
and
public ServerHttpSecurity.OAuth2ResourceServerSpec and()
-
configure
protected void configure(ServerHttpSecurity http)
-
getJwtDecoder
protected ReactiveJwtDecoder getJwtDecoder()
-
getJwtAuthenticationConverter
protected org.springframework.core.convert.converter.Converter<Jwt,? extends reactor.core.publisher.Mono<? extends AbstractAuthenticationToken>> getJwtAuthenticationConverter()
-
-