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[…]

Spring Security Simple Authentication

In this post, we will create a simple application, that displays Spring Security form-based authentication. The user is prompted to give his credentials. If they are correct, he enters to the dashboard. If they are wrong, he gets an error message. Dashboard is accessible only by authenticated users.  The full github repository can be found here:  Read more about Spring Security Simple Authentication[…]