I've written a controller class and an action method like the
@Controller
public class Controller
{
@RequestParam("/test.htm")
public String action(Model model)
{
//Something
}
}
How to get HttpServletRequest
object in action's method body?