October 2020
Beginner to intermediate
560 pages
14h 52m
English
This chapter covers
Creating your first project with Spring Security
Designing simple functionalities using the basic actors for authentication and authorization
Applying the basic contracts to understand how these actors relate to each other
Writing your implementations for the primary responsibilities
Overriding Spring Boot’s default configurations
Spring Boot appeared as an evolutionary stage for application development with the Spring Framework. Instead of you needing to write all the configurations, Spring Boot comes with some preconfigured, so you can override only the configurations that don’t match your implementations. We also call this approach convention-over-configuration.
Before this way of developing ...