Spring Security Advanced Authorization

In this post we implement some more advanced authorization practices. We already showed in previous post how to use Spring Security to setup access control in one page based on user roles. Here we will show how we can extend this authorization with security tags and method security. This post follows Spring Security Simple Authorization but adds Read more about Spring Security Advanced Authorization[…]

Spring Security Simple Authorization

This post follows the Spring Security Simple Authentication  post but adds a simple authorization logic to our solution. We will continue with the same application, but now we will create a page that will be accessible only by some users. We will achieve that by assigning to the users roles and restrict their authorities based on Read more about Spring Security Simple Authorization[…]