关于spring.thymeleaf.prefix配置

来源:7-1 SpringBoot配置全局的异常捕获 - web页面跳转

慕粉4254941

2019-06-29 23:16

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和报错信息都没有,请问这是什么状况


https://img4.mukewang.com/5d1780860001ede102510111.jpg

写回答 关注

1回答

  • 陈陳
    2019-07-19 10:15:58

    你在resources下使用templates可是不用设置prefix,会使用默认配置,就默认在resources的templates目录,,

    如果 不用默认的,可以参考我现在用的配置

    spring.thymeleaf.prefix=/WEB-INF/view/

    spring.thymeleaf.suffix=.html



SpringBoot开发常用技术整合

SpringBoot 极简开发的框架整合利器

102171 学习 · 508 问题

查看课程

相似问题