關(guān)于spring.thymeleaf.prefix配置
spring.thymeleaf.prefix=classpath:/templates/thymeleaf/ 當(dāng)我這么設(shè)置的時(shí)候(error.html我也放入thymeleaf中了,modelview也改過了),結(jié)果報(bào)錯(cuò)了,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]")。
結(jié)果圖也只顯示h1文字部分,下面的抓取url和報(bào)錯(cuò)信息都沒有,請(qǐng)問這是什么狀況
2019-07-19
你在resources下使用templates可是不用設(shè)置prefix,會(huì)使用默認(rèn)配置,就默認(rèn)在resources的templates目錄,,
如果 不用默認(rèn)的,可以參考我現(xiàn)在用的配置
spring.thymeleaf.prefix=/WEB-INF/view/
spring.thymeleaf.suffix=.html