这个错误我在idea里运行的时候是没有出现的,但是我把这个项目打成jar包,执行jar包之后就出现了。这个错误就是说模板页找不到,但是实质上我项目里模板页是存在的。这个错误的解决方式就是在controller中跳转模板页的时候不使用"/"开头就行了。
示例
@Controller
public class userController {
@Autowired
private userServiceImpl userService;
@RequestMapping("/userInfo/{nickname}")
public Object showBlog(@PathVariable("nickname") String nickname,
Model model, HttpServletRequest request){
User userInfo = userService.getUserInfo(nickname);
model.addAttribute("userInfo",userInfo);
return "userInfo";
}
}