|
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 |
2 | 18 |
|
| 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. |
3 | 31 |
|
4 | 32 | Basic Authenticaiton
|
5 | 33 |
|
6 | 34 | 
|
| 35 | + |
| 36 | + |
| 37 | + |
| 38 | +## 2. Core Spring Security |
0 commit comments