可以直接在Controller中返回的字符串中写明路径。比如web-inf/jsp/user/index.jsp,可以这样写 @RequestMapping("/user/index") public String showIndex() { return "user/index"; }
可以直接在Controller中返回的字符串中写明路径。比如web-inf/jsp/user/index.jsp,可以这样写