[BAEL-17476] - Add README descriptions 13 (#7863)
* [BAEL-17476] - Add README descriptions 13 * Changed the wording in some modules
This commit is contained in:
parent
2a381c38aa
commit
c2cf7ae969
|
@ -1,3 +1,7 @@
|
|||
## Spring Security MVC Json View
|
||||
|
||||
This module contains articles about Spring Security with JSON
|
||||
|
||||
### Relevant Articles:
|
||||
|
||||
- [Filtering Jackson JSON Output Based on Spring Security Role](https://www.baeldung.com/spring-security-role-filter-json)
|
||||
|
|
|
@ -1,5 +1,6 @@
|
|||
## Spring Security LDAP
|
||||
|
||||
## Spring Security with LDAP Example Project
|
||||
This module contains articles about Spring Security LDAP
|
||||
|
||||
###The Course
|
||||
The "Learn Spring Security" Classes: http://github.learnspringsecurity.com
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
=========
|
||||
## Spring Security Login
|
||||
|
||||
## Spring Security Login Example Project
|
||||
This module contains articles about login mechanisms with Spring Security
|
||||
|
||||
###The Course
|
||||
### The Course
|
||||
The "Learn Spring Security" Classes: http://github.learnspringsecurity.com
|
||||
|
||||
### Relevant Articles:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
=========
|
||||
## Spring Security Persisted Remember Me
|
||||
|
||||
## Spring Security Persisted Remember Me Example Project
|
||||
This module contains articles about 'remember me' with Spring Security
|
||||
|
||||
###The Course
|
||||
The "Learn Spring Security" Classes: http://github.learnspringsecurity.com
|
||||
|
|
|
@ -1,3 +1,15 @@
|
|||
## Spring Security MVC Socket
|
||||
|
||||
This module contains articles about WebSockets with Spring Security
|
||||
|
||||
### Relevant Articles:
|
||||
|
||||
- [Intro to Security and WebSockets](http://www.baeldung.com/spring-security-websockets)
|
||||
- [Spring WebSockets: Build an User Chat](https://www.baeldung.com/spring-websockets-send-message-to-user)
|
||||
- [REST vs WebSockets](https://www.baeldung.com/rest-vs-websockets)
|
||||
|
||||
### Running This Project:
|
||||
|
||||
To build the project, run the command: mvn clean install. This will build a war file in the target folder that you can deploye on a server like Tomcat.
|
||||
|
||||
Alternatively, run the project from an IDE.
|
||||
|
@ -5,7 +17,3 @@ Alternatively, run the project from an IDE.
|
|||
To login, use credentials from the data.sql file in src/main/resource, eg: user/password.
|
||||
|
||||
|
||||
### Relevant Articles:
|
||||
- [Intro to Security and WebSockets](http://www.baeldung.com/spring-security-websockets)
|
||||
- [Spring WebSockets: Build an User Chat](https://www.baeldung.com/spring-websockets-send-message-to-user)
|
||||
- [REST vs WebSockets](https://www.baeldung.com/rest-vs-websockets)
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
=========
|
||||
## Spring Security MVC
|
||||
|
||||
## Spring Security Login Example Project
|
||||
This module contains articles about Spring Security in MVC applications
|
||||
|
||||
###The Course
|
||||
The "Learn Spring Security" Classes: http://github.learnspringsecurity.com
|
||||
|
|
|
@ -1,16 +1,21 @@
|
|||
## Spring Security OpenID
|
||||
|
||||
This module contains articles about OpenID with Spring Security
|
||||
|
||||
### Relevant articles
|
||||
|
||||
- [Spring Security and OpenID Connect](http://www.baeldung.com/spring-security-openid-connect)
|
||||
|
||||
|
||||
## OpenID Connect with Spring Security
|
||||
### OpenID Connect with Spring Security
|
||||
|
||||
### Run the Project
|
||||
|
||||
```
|
||||
mvn spring-boot:run
|
||||
```
|
||||
|
||||
### Obtain Google App - Client ID, Secret
|
||||
|
||||
- You need to get client id and client secret by creating a new project at [Google Developer Console](https://console.developers.google.com/project/_/apiui/credential?pli=1)
|
||||
- Make sure to add OAuth2 credentials by selecting Add credentials > OAuth 2.0 client ID
|
||||
- Make sure you set redirect URI to http://localhost:8081/google-login
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
=========
|
||||
## Spring Security React
|
||||
|
||||
## Spring Security React Example Project
|
||||
This module contains articles about Spring Security with ReactJS
|
||||
|
||||
### The Course
|
||||
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
=========
|
||||
## Spring Security REST Basic Authentication
|
||||
|
||||
## REST API with Basic Authentication - Example Project
|
||||
This module contains articles about basic authentication in RESTful APIs with Spring Security
|
||||
|
||||
###The Course
|
||||
|
||||
The "Learn Spring Security" Classes: http://github.learnspringsecurity.com
|
||||
|
||||
### Relevant Articles:
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
=========
|
||||
## Spring Security REST
|
||||
|
||||
## Spring Security for REST Example Project
|
||||
This module contains articles about REST APIs with Spring Security
|
||||
|
||||
### Courses
|
||||
The "REST With Spring" Classes: http://bit.ly/restwithspring
|
||||
|
|
Loading…
Reference in New Issue