spring.thymeleaf.prefix=classpath:/templates/thymeleaf/ 当我这么设置的时候(error.html我也放入thymeleaf中了,modelview也改过了),结果报错了,org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.thymeleaf.exceptions.TemplateInputException: An error happened during template parsing (template: "class path resource [templates/thymeleaf/error.html]")。
结果图也只显示h1文字部分,下面的抓取url和报错信息都没有,请问这是什么状况
你在resources下使用templates可是不用设置prefix,会使用默认配置,就默认在resources的templates目录,,
如果 不用默认的,可以参考我现在用的配置
spring.thymeleaf.prefix=/WEB-INF/view/
spring.thymeleaf.suffix=.html