Java中@Controller注解和@ResponseBody注解,报错找不到template

Posted 生之须臾亦不负

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java中@Controller注解和@ResponseBody注解,报错找不到template相关的知识,希望对你有一定的参考价值。

报错信息:org.thymeleaf.exceptions.TemplateInputException: Error resolving template "xxxxx", template might not exist or might not be accessible by any of the configured Template Resolvers

运行提示找不到模板时,

在controller类上加注解@Controller 和@RestController都可以在前端调通接口,但是二者的区别在于,当用前者的时候在方法上必须添加注解@ResponseBody,如果不添加@ResponseBody,就会报上面错误,因为当使用@Controller 注解时,spring默认方法返回的是view对象(页面)。而加上@ResponseBody,则方法返回的就是具体对象了。@RestController的作用就相当于@Controller+@ResponseBody的结合体
————————————————
版权声明:本文为CSDN博主「你瞅啥瞅你咋地」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/PubliclyAccessible/article/details/79726360

以上是关于Java中@Controller注解和@ResponseBody注解,报错找不到template的主要内容,如果未能解决你的问题,请参考以下文章

java常用注解

解决非controller使用@Autowired注解注入报错为java.lang.NullPointerException问题

SpringMVC框架-使用注解编写的处理请求和映射-@Controller @RequestMapping

java 注解总结

Java面试宝典每日3题:day33

Spring 和 SpringMVC 常用注解(@Autowired@Resource@Component@Repository@Service@Controller的区别)