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. * integrating {@code io.jsonwebtoken:jjwt-api} as the JWT management library.
* *
* <p> * <p>
* The {@code AuthzeroTokenResolver} relies on the {@code * The {@code JjwtTokenResolver} relies on the {@code io.jsonwebtoken:jjwt-api}
* io.jsonwebtoken:jjwt-api} library to handle the underlying JWT operations, * library to handle the underlying JWT operations, including token creation,
* including token creation, validation, and extraction. It utilizes the {@code * validation, and extraction. It utilizes the {@code io.jsonwebtoken:jjwt-api}
* io.jsonwebtoken:jjwt-api} {@code Algorithm} class to define and use * {@code Algorithm} class to define and use different algorithms for JWT
* different algorithms for JWT signing and verification. * signing and verification.
* *
* <p> * <p>
* To use the {@code AuthzeroTokenResolver}, developers must provide the * To use the {@code JjwtTokenResolver}, developers must provide the necessary
* necessary configurations and dependencies, such as the {@code GuidCreator} * configurations and dependencies, such as the {@code GuidCreator} for
* for generating unique JWT IDs (JTI), the supported algorithm function, the * generating unique JWT IDs (JTI), the supported algorithm function, the
* issuer name, and the secret key used for token signing and validation. The * issuer name, and the secret key used for token signing and validation. The
* {@code AuthzeroTokenResolverConfig} class provides a convenient way to * {@code JjwtTokenResolverConfig} class provides a convenient way to configure
* configure these dependencies. * these dependencies.
* *
* <p> * <p>
* Developers using the {@code io.jsonwebtoken:jjwt-api} integration should be * Developers using the {@code io.jsonwebtoken:jjwt-api} integration should be