In the controller , i have this code, somehow, i want to get the request Mapping value "search". How is it possible ?
@RequestMapping("/search/")
public Map searchWithSearchTerm(@RequestParam("name") String name) {
// more code here
}
Thank you.