You need your controller method to specify the "view" itself. So the return value should be a String that corresponds to the view name for aaaa.jsp. You can then add the map to the model and it will be available in the JSP. Here is the sample code:
@RequestMapping(value = "/forgotPWD",params="username", method = RequestMethod.POST)
public String forgotPassword(@RequestParam(value = "username", required = false) String username,
Map<String, Object> map, Model model) {
[snip]
map.put("forgotUser","Mail has been sent to your mail address");
model.addAttribute("userMap", map);
[snip]
return "message.jsp";
}