Error resolving template "xxx", template might not exist or might not be accessible by any of the configured Template Resolvers

出现这个错误,在方法上添加注解@ResponseBody 或者把controller的@Controller改成@RestController。

在controller上加上注解@Controller和@RestController都可以在前端调通接口,二者的区别是,@Controller的方法返回的是view对象(及页面),如果需要返回具体对象那方法需加上@RedponseBody。@RestController的作用就相当于@Controller和@ResponseBody

posted @ 2020-01-31 16:57  由自己  阅读(224)  评论(0编辑  收藏  举报