Method Level Security

Published On: 22 August 2022.By .
  • General

In this article, we will create a simple spring boot application to demonstrate spring method-level security.

What is method-level security? 

It can be considered an abstract layer of security that helps us write secure methods. It provides us with some handy annotations that can reduce our work such as @Secured, @RolesAllowed, etc.

Project Structure 

We can start creating a spring through spring-initializer or from any IDE of your choice. And add the dependency for spring web and security.

There will be mainly three packages: config, controller, and service

For this blog we are not going to use a database but will be using the in-memory database provided by the spring, so no need for model or repository packages.

The project structure should look similar to :

Don’t worry about the files, we will be creating them one by one.

Enabling Method Security

To use the Spring method security, we need to add the spring-boot-starter-security dependency, which I have already mentioned above:

Next, we need to enable global Method Security, for this create a config package, and then create a class namely MethodSecurityConfig :

  • The prePostEnabled property enables Spring Security pre/post annotations.
  • The securedEnabled property determines if the @Secured annotation should be enabled.
  • The jsr250Enabled property allows us to use the @RoleAllowed annotation.

Let’s move on to fun stuff.

Applying Method Security 

Hold up, We first need to configure our users and make some dummy APIs to test, so let’s create them first.

Create a package controller and create a class HomeController, the name can be of your choice, inside this class we will be creating two controllers, one will be secure, and the other will be open.

And don’t forget to write @RestController on the class.

Let’s configure which controller will be secured and create some dummy users with different roles.

Create a class MySecurityConfig inside the config package, annotate it with @Configuration, and it should extend WebSecurityConfigurerAdapter.

Let’s override some methods from the adapter and configure them.

In the above picture, we have created two users and defined the dashboard path as secured.

Now, finally, we can come back to implement method-level security.

Let’s define a service layer that contains a dummy that should be only accessible by users with role admin, create a package service and then create a class UserService and annotate it with @Service and create a dummy method in it, which will be used from the controller layer in the dashboard API by auto wiring the user Service class.

we have annotated the method with @Secured, this annotation allows us to define which user’s role can access the method.

Let’s test them :

Testing 

Let’s Open postman, and try to hit the endpoint:  http://localhost:8080/dashboard with Authorization of username: bharat and password: 123, we will be allowed to access the method, but if we try to access the same endpoint with credentials of username: test and password:123, we will be prompted with 403 forbidden error, because the test user has the role of USER.

This blog just introduced a single annotation @Secured, there are various other annotations such as @RolesAllowed, @PreAuthorize, @PostAuthorize, @PreFilter,@PostFilter, etc.

Here are some references where you can look up other annotations :

Method-level-security

Thanks, I really hoped you enjoy reading the blog.

 

Related content

That’s all for this blog