Spring @RequestParam Annotation

Overview In this quick tutorial, we’ll explore Spring's @RequestParam annotation. Simply put, we can use @RequestParam to extract query parameters, form parameters and even files from the request. We’ll discuss how to use @RequestParam and its…

Continue Reading

Spring RequestMapping

Overview @RequestMapping is one of the most common annotation used in Spring Web applications. This annotation maps HTTP requests to handler methods of MVC and REST controllers. In this post,…

Continue Reading