docs(simple-jwt-jjwt): Optimised documents.

This commit is contained in:
Zihlu Wang
2023-08-04 19:51:21 +08:00
parent 58746bb3a2
commit c50f66b4a3
@@ -35,19 +35,19 @@
* integrating {@code io.jsonwebtoken:jjwt-api} as the JWT management library.
*
* <p>
* The {@code AuthzeroTokenResolver} relies on the {@code
* io.jsonwebtoken:jjwt-api} library to handle the underlying JWT operations,
* including token creation, validation, and extraction. It utilizes the {@code
* io.jsonwebtoken:jjwt-api} {@code Algorithm} class to define and use
* different algorithms for JWT signing and verification.
* The {@code JjwtTokenResolver} relies on the {@code io.jsonwebtoken:jjwt-api}
* library to handle the underlying JWT operations, including token creation,
* validation, and extraction. It utilizes the {@code io.jsonwebtoken:jjwt-api}
* {@code Algorithm} class to define and use different algorithms for JWT
* signing and verification.
*
* <p>
* To use the {@code AuthzeroTokenResolver}, developers must provide the
* necessary configurations and dependencies, such as the {@code GuidCreator}
* for generating unique JWT IDs (JTI), the supported algorithm function, the
* To use the {@code JjwtTokenResolver}, developers must provide the necessary
* configurations and dependencies, such as the {@code GuidCreator} for
* generating unique JWT IDs (JTI), the supported algorithm function, the
* issuer name, and the secret key used for token signing and validation. The
* {@code AuthzeroTokenResolverConfig} class provides a convenient way to
* configure these dependencies.
* {@code JjwtTokenResolverConfig} class provides a convenient way to configure
* these dependencies.
*
* <p>
* Developers using the {@code io.jsonwebtoken:jjwt-api} integration should be