@RequestMapping(value = "",method = RequestMethod.GET)
public String printWelcome(ModelMap model) {
    model.addAttribute("message", doctorDetails);
    return "doctorchannelling/index";
}
I have added this controller in my SpringMVC project now I need to access the element doctorDetails in a java code which is inside a jsp
how can I call this doctorDetails inside <% %> Mark
 
     
     
     
    