Class NimbusJwtEncoder
java.lang.Object
org.springframework.security.oauth2.jwt.NimbusJwtEncoder
- All Implemented Interfaces:
 JwtEncoder
An implementation of a 
JwtEncoder that encodes a JSON Web Token (JWT) using the
 JSON Web Signature (JWS) Compact Serialization format. The private/secret key used for
 signing the JWS is supplied by the com.nimbusds.jose.jwk.source.JWKSource
 provided via the constructor.
 NOTE: This implementation uses the Nimbus JOSE + JWT SDK.
- Since:
 - 5.6
 - See Also:
 
- 
Constructor Summary
ConstructorsConstructorDescriptionNimbusJwtEncoder(com.nimbusds.jose.jwk.source.JWKSource<com.nimbusds.jose.proc.SecurityContext> jwkSource) Constructs aNimbusJwtEncoderusing the provided parameters. - 
Method Summary
Modifier and TypeMethodDescriptionencode(JwtEncoderParameters parameters) Encode the JWT to its compact claims representation format.voidsetJwkSelector(org.springframework.core.convert.converter.Converter<List<com.nimbusds.jose.jwk.JWK>, com.nimbusds.jose.jwk.JWK> jwkSelector) Use this strategy to reduce the list of matching JWKs when there is more than one. 
- 
Constructor Details
- 
NimbusJwtEncoder
public NimbusJwtEncoder(com.nimbusds.jose.jwk.source.JWKSource<com.nimbusds.jose.proc.SecurityContext> jwkSource) Constructs aNimbusJwtEncoderusing the provided parameters.- Parameters:
 jwkSource- thecom.nimbusds.jose.jwk.source.JWKSource
 
 - 
 - 
Method Details
- 
setJwkSelector
public void setJwkSelector(org.springframework.core.convert.converter.Converter<List<com.nimbusds.jose.jwk.JWK>, com.nimbusds.jose.jwk.JWK> jwkSelector) Use this strategy to reduce the list of matching JWKs when there is more than one.For example, you can call
setJwkSelector(List::getFirst)in order to have this encoder select the first match.By default, the class with throw an exception.
- Since:
 - 6.5
 
 - 
encode
Description copied from interface:JwtEncoderEncode the JWT to its compact claims representation format.- Specified by:
 encodein interfaceJwtEncoder- Parameters:
 parameters- the parameters containing the JOSE header and JWT Claims Set- Returns:
 - a 
Jwt - Throws:
 JwtEncodingException- if an error occurs while attempting to encode the JWT
 
 -