English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
LDAP (Lightweight Directory Access Protocol) single sign-on, JAAS (Java Authentication and Authorization Service) LoginModule, basic access authentication, remember me, web form authentication, authorization software, localization, HTTP authorization
This is an open application protocol used to maintain and access distributed directory information services over the Internet protocol.
This feature allows users to access multiple applications with the help of a single account (username and password).
This is a pluggable authentication module implemented in Java. Spring Security supports its authentication process.
Spring Security supports basic access authentication, which is used to provide username and password during requests.
This feature allows us to make the authentication process more secure than basic access authentication. It requires the browser to confirm the user's identity before sending sensitive data over the network.
Spring Security supports this feature with the help of. HTTP Cookies. It will remember user information and avoid logging in again from the same computer before the user logs out.
In this process, the web form collects and validates user credentials from the credentials of the network browser. When we need to implement web form authentication, Spring Security supports it.
Spring Security provides this feature to authorize users before accessing resources. It allows developers to define access strategies for resources.
This feature allows us to create application user interfaces in any language.
Spring provides this feature for HTTP authorization of web request URLs using Apache Ant paths or regular expressions.
This feature provides the necessary login functionality for users by using their existing accounts on GitHub or Google to the application. This feature is implemented by using OAuth 2authorization codes granted according to the authorization framework specified in .0.
From Spring Security 5Starting from version .0, it provides reactive support and can even be integrated with Spring WebFlux.
Spring Security 5.0 introduced new password encoders DelegatingPasswordEncoder which can more modernly address the previous encoders NoOpPasswordEncoder all questions.