Rest Controller

We’ve defined a simple rest controller for demo purposes. By default, our Fitler can recognize any URL pattern so we don’t have to worry about mapping in this example. However, if we need the filter to be invoked only for specific URLs, then we need to specify that before which we will see in the next example.

Java




// Simple REST Controller for testing our Servlet Filter
  
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
  
@RestController
@RequestMapping("/api")
public class ServletController {
    
      //Get-Request Mapping
    @GetMapping("/")
    public String hello(){
        return "This is a sample API for testing Servlet Filter - Spring Boot!";
    }
}


Output:

Web-Browser Output

Console Output:

Console Output

Other ways we can use servlet filters involve –

  1. For a category of URL Patterns
  2. Multiple servlet filters chained with @Order annotation and many more.

Spring Boot – Servlet Filter

Spring boot Servlet Filter is a component used to intercept & manipulate HTTP requests and responses. Servlet filters help in performing pre-processing & post-processing tasks such as:

  • Logging and Auditing: Logging operations can be performed by the servlet filter logging the request and response which assists in debugging and troubleshooting.
  • Authentication and Authorization: Authentication and Authorization refer to the process of providing access and checking if a user has certain privilege permissions to access a resource
  • Caching: Caching is a mechanism that allows us to store data temporarily for faster access in the future. It can be done by caching response in servlet filters.
  • Routing: Servlet filters can also be used for routing responses to different controllers giving us more control over handling requests

Similar Reads

Example of Servlet Filter

Let us discuss some Real-Life examples to better understand the Spring Boot Servlet Filter....

Step-By-Step Implementation

Step 1: Go to spring Initializr and create a configuration file with the following dependency :...

Servlet Filter

...

Rest Controller

In the following example, we’ve defined a custom filter. This custom Filter is annotated with @Component so that it can be recognized by spring context. And overrides the doFilter() method that takes 3 parameters –...

Servlet filters with a specific or group of URL Patterns

...

Multiple Servlet Filter Ordering

We’ve defined a simple rest controller for demo purposes. By default, our Fitler can recognize any URL pattern so we don’t have to worry about mapping in this example. However, if we need the filter to be invoked only for specific URLs, then we need to specify that before which we will see in the next example....

Conclusion

...

Contact Us