1. 程式人生 > >使用 Thymeleaf 和 springboot 功能提示找不到模版目標檔案

使用 Thymeleaf 和 springboot 功能提示找不到模版目標檔案

1.在使用 Springboot 和 Thymeleaf 的時候啟動了 springboot 服務執行一直提示找不到目標檔案。

2.這個時候我們只需要找 application.properties 檔案裡面新增這麼一句話

spring.thymeleaf.enabled=false

3.然後就可以正常訪問了:

4.問題分析:

  • SpringBoot 預設使用的是 thymeleaf 的前端模版引擎,但是我們這裡使用的是 jsp 的檔案,也就是 jsp 型別的模板,這樣會導致衝突,所以我們需要在配置檔案中禁用 thymeleaf 模板即可。html 檔案不用禁用,如果 html 檔案也出現上述問題可能是路徑出問題了,請詳細檢查配置檔案和控制檔案。