Which of the following is a primary benefit of using JWT tokens in Spring Boot security?

  • Centralized user management.
  • Complex and lengthy token format.
  • Enhanced encryption capabilities.
  • Statelessness and scalability.
A primary benefit of using JWT (JSON Web Tokens) in Spring Boot security is statelessness and scalability. JWTs are self-contained and do not require server-side storage or session management, making them suitable for distributed and stateless architectures. They do not provide centralized user management, have a compact token format, and while they offer strong encryption capabilities, statelessness is a more notable advantage.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *