關于spring.thymeleaf.prefix配置
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和報錯信息都沒有,請問這是什么狀況
2019-07-19
你在resources下使用templates可是不用設置prefix,會使用默認配置,就默認在resources的templates目錄,,
如果 不用默認的,可以參考我現在用的配置
spring.thymeleaf.prefix=/WEB-INF/view/
spring.thymeleaf.suffix=.html