Skip to content

Commit c146316

Browse files
author
Davr bank
committed
2 parents c542425 + 1186db2 commit c146316

File tree

1 file changed

+33
-1
lines changed

1 file changed

+33
-1
lines changed

Advanced-SpringSecure/README.md

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,38 @@
1-
## Advanced Spring Security
1+
# Advanced Spring Security
2+
## Spring Security List
3+
4+
## Authentication with Spring Security
5+
6+
1. Spring Security Form Login
7+
2. Spring Security – Basic Authentication (popular)
8+
3. Form Login – Error Handling and Localization
9+
4. Logout
10+
5. Redirect to Different Pages after Login
11+
6. Remember Me
12+
7. Spring Security Authentication Provider (popular)
13+
8. How to Manually Authenticate User with Spring Security (popular)
14+
9. Extra Login Fields with Spring Security (popular)
15+
10. Spring Security Custom AuthenticationFailureHandler (popular)
16+
11. Prevent Brute Force Authentication Attempts with Spring Security
17+
12. Spring Security Login Page with React
218

19+
20+
## 1. Spring Security Form Login
21+
22+
* Creating a Basic Spring Application
23+
24+
These are the terms we need to address:
25+
26+
* Authentication refers to the process of verifying the identity of a user, based on provided credentials. A common example is entering a username and a password when you log in to a website. You can think of it as an answer to the question Who are you?.
27+
* Authorization refers to the process of determining if a user has proper permission to perform a particular action or read particular data, assuming that the user is successfully authenticated. You can think of it as an answer to the question Can a user do/read this?.
28+
* Principle refers to the currently authenticated user.
29+
* Granted authority refers to the permission of the authenticated user.
30+
* Role refers to a group of permissions of the authenticated user.
331

432
Basic Authenticaiton
533

634
![basic_auth](https://user-images.githubusercontent.com/11626327/184307524-f5379259-3ad7-4df3-aa20-b18da7cc046d.png)
35+
36+
37+
38+
## 2. Core Spring Security

0 commit comments

Comments
 (0)