Spring MVC 视图问题,访问 jsp 却返回字符串

@RequestMapping("showAlldate")
@ResponseBody
public String showAlldate(Model model){
   List<TrafficEconomyAmapSpeedRawHz> list=otherService.getAll();
   model.addAttribute("list",otherService.getAll());
   return "jsp/showall.jsp";

}

直接返回

jsp/showall.jsp
删掉
@ResponseBody
因为默认返回字符串,指定了字符串的形式响应

猜你喜欢

转载自blog.csdn.net/kevin_loving/article/details/80545798