@RequestMapping(value = "/user/search/{email}")
public String auditUseremail(@PathVariable("email") String email,Map<String, Object> map) {
System.out.println(email);
}
this is my conroller class function, which is called when the action is http://localhost:8080/LACASServer/secure/user/search/[email protected]
as u can look, email is in URL, but when i print it in the above method, i get it [email protected], can anybody tell me, what can be the issue and how to resolve it.