Javatpoint Logo
Javatpoint Logo

Spring Security Project using Java Configuration

Spring Framework added Java configuration support in Spring 3.1. In Spring Security, Java configuration was added to Spring Security 3.2 that allows us to configure Spring Security without writing single line of XML.

Here, we will create an example that implements Spring Security and configured without using XML. It includes the following steps.

Step 1

The first step is to create a Spring Security Java configuration. A simple basic Java Configuration is given below.

WebSecurityConfig.java

This configuration creates a Servlet Filter known as the springSecurityFilterChain. It is responsible for protecting the application URLs, validating submit username and password, redirecting to the login form etc.

The above Java Configuration do the following for our application.

  • Require authentication for every URL
  • Creates a login form
  • Allow user to authenticate using form based authentication
  • Allow to logout
  • Prevent from CSRF attack
  • Security Header Integration, etc

Step 2

Now, we will register springSecurityFilterChain with the war. To register, Spring Security provides a base class AbstractSecurityWebApplicationInitializer that we need to extend.

For Spring MVC application, SecurityWebApplicationInitializer will look like below.

SecurityWebApplicationInitializer.java

This code will register the springSecurityFilterChain for every URL in our application.

Step 3

Now, load WebSecurityConfig in our existing ApplicationInitializer and add into the getRootConfigClasses() method.

MvcWebApplicationInitializer.java

Step 4

WebSecurityConfigurerAdapter class provides a configure(HttpSecurity http) method that contains the following default configuration. Default definition looks like below.

It is similar to the given XML.

This method does the following things.

  • It ensures that each request made by the user requires to the user to be authenticated
  • It allows user to authenticate by using form based login
  • It allows user to authenticate with HTTP Basic authentication

Step 5

Creating a controller to handle user requests.

HomeController.java

We have one view (.jsp) page index.jsp, it contains the following source code.

Our complete project looks like the below.

Spring Security Java Example

Output:

We have a single action in our controller and it can be accessed only by authentic user. So, when we run the application, it prompts for the login credentials. The output is given below.

Spring Security Java Example 1

This is default login page provided by the Spring Security, we did not create it. Although we can create our own login page and configure with the application. We will do this in our next topics.

Well, now, provide the login credentials to get into the application resource. Spring Security validate user credentials and make sure that user is authentic.

Let's see, what happen? If we enter wrong credentials.

Spring Security Java Example 2

After click on login button, it throws Bad Credentials error.

Spring Security Java Example 3

Now, login with correct credentials.

Spring Security Java Example 4

This time credentials are matched and shows our home page (index.jsp).

Spring Security Java Example 5





Youtube For Videos Join Our Youtube Channel: Join Now

Feedback


Help Others, Please Share

facebook twitter pinterest

Learn Latest Tutorials


Preparation


Trending Technologies


B.Tech / MCA