You are on page 1of 1

Spring Security => To secure apps that are created using springboot

Boot helps to automate itself so developer needs to do less configuration

=>Spring boot security secure our web app by default and further we can customize
as per need.
Those who are authenticated and valid users are there only they can use
=>We just need to add the spring boot start security dependency in our application
Authentication =>The identity of the users are checked for providing the access to
the system.
User is verified validating that users are whom they claim to be'

Authorization=>Giving the user permission to access a specific resource or


function.

Filter=>A filter is an object that is involved at the preprocessing and


postprocessing of a request
It creates an object of authentication and stores some basic info and forwards that
to
authentication manager

You might also like