解决办法:
将控制器部分这一部分请求的代码改为:
@RequestMapping(method=RequestMethod.GET,value="/test")
public ModelAndView test(Model model){
model.addAttribute("message","world");
return new ModelAndView("hello/test");
}
解决办法:
将控制器部分这一部分请求的代码改为:
@RequestMapping(method=RequestMethod.GET,value="/test")
public ModelAndView test(Model model){
model.addAttribute("message","world");
return new ModelAndView("hello/test");
}