本文主要是介绍Error resolving template [xxx], template might not exist or might not be accessible ...,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
低级错误
2019-12-26 15:51:45.884 [http-nio-8080-exec-1] ERROR org.thymeleaf.TemplateEngine - [THYMELEAF][http-nio-8080-exec-1] Exception processing template "login": Error resolving template [login], template might not exist or might not be accessible by any of the configured Template Resolvers
org.thymeleaf.exceptions.TemplateInputException: Error resolving template [login], template might not exist or might not be accessible by any of the configured Template Resolversat org.thymeleaf.engine.TemplateManager.resolveTemplate(TemplateManager.java:869)at org.thymeleaf.engine.TemplateManager.parseAndProcess(TemplateManager.java:607)at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1098)at org.thymeleaf.TemplateEngine.process(TemplateEngine.java:1072)....
原因
在controller上加注解@Controller 和@RestController都可以在前端调通接口
但是二者的区别在于:
当用前者的时候在方法上必须添加注解@ResponseBody,如果不添加@ResponseBody,就会报上面错误,因为当使用@Controller 注解时,spring默认方法返回的是view对象(页面)。
而加上@ResponseBody,则方法返回的就是具体JSON对象了。
@RestController的作用就相当于@Controller+@ResponseBody的结合体
前段前时间一直在搞前端Vue,Java后端这段基本上都快忘光了,尴尬!!!~~~
这篇关于Error resolving template [xxx], template might not exist or might not be accessible ...的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!