2019-10-31 21:43:47 -04:00
|
|
|
## Spring Boot Security
|
|
|
|
|
|
|
|
This module contains articles about Spring Boot Security
|
|
|
|
|
|
|
|
### Relevant Articles:
|
|
|
|
|
|
|
|
- [Spring Boot Security Auto-Configuration](https://www.baeldung.com/spring-boot-security-autoconfiguration)
|
|
|
|
- [Spring Security for Spring Boot Integration Tests](https://www.baeldung.com/spring-security-integration-tests)
|
|
|
|
- [Introduction to Spring Security Taglibs](https://www.baeldung.com/spring-security-taglibs)
|
2020-02-10 16:07:00 -05:00
|
|
|
- [Guide to @CurrentSecurityContext in Spring Security](https://www.baeldung.com/spring-currentsecuritycontext)
|
2021-01-05 12:31:01 -05:00
|
|
|
- [Disable Security for a Profile in Spring Boot](https://www.baeldung.com/spring-security-disable-profile)
|
2021-11-17 03:20:17 -05:00
|
|
|
- [Spring @EnableWebSecurity vs. @EnableGlobalMethodSecurity](https://www.baeldung.com/spring-enablewebsecurity-vs-enableglobalmethodsecurity)
|
2021-01-05 12:31:01 -05:00
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
|
|
|
|
### Spring Boot Security Auto-Configuration
|
|
|
|
|
|
|
|
- mvn clean install
|
|
|
|
- uncomment actuator dependency simultaneously with the line from basic auth main class
|
|
|
|
- uncomment security properties for easy testing. If not random will be generated.
|
|
|
|
|
|
|
|
### CURL commands
|
|
|
|
|
|
|
|
- curl -X POST -u baeldung-admin:baeldung -d grant_type=client_credentials -d username=baeldung-admin -d password=baeldung http://localhost:8080/oauth/token
|