Spring Security - Java JWT
JWT - JWT token consists of these 3 values AUTHENTICATION : check the identity i.e validation [user is valid or not ] AUTHORIZATION : check weather the user is authorized to access the resource which he is demanding. Steps for creating spring security project: - resourse . java brains youtube channel 1. add dependency : spring web ,spring security 2.create SelfUserdetailservice class which will be extending UserDetailsService class from spring security.core library. In This class we will override methods of UserDetailsService such as loadUserByUserName....So now this method will return the user which will also come from spring security library of User type having username, password ,roles list . So we can also create seperate class extending User class or we can directly return the user from this loadUserByUsername method. 3. Create security configuration class which extends WebSecurityConfigurerAdapter class and annotated with @EnableWebSecurit...