Hi,
while using the below code,
@RequestMapping(value="/examlogin.htm", method=RequestMethod.GET)
public String displayExamLogin(HttpServletRequest request, Model model, @RequestParam(value = "user", required = true) String user) throws Exception{
String today = new Date().toString();
model.addAttribute("user", user);
logger.info("Loading the login page... "+today+" POST method");
return "";
}
Can you tell the url that has been used for accessing the above?
Regards,
Sutha