Cannot find template location: classpath:/templates/ (please add some templates or check your Thymel

一、异常信息

Cannot find template location: classpath:/templates/ (please add some templates or check your Thymeleaf configuration)。

找不到模板位置:classpath:/ templates /(请添加一些模板或检查您的Thymeleaf配置)

二、解决方法

(1)在application.propertoes或yml配置文件中添加

       spring.freemarker.checkTemplateLocation=false
       或
       spring:
           freemarker:
               checkTemplateLocation: false

(2)在项目的 /src/main/resources/templates 目录下添加一个模板文件.html

发布了267 篇原创文章 · 获赞 145 · 访问量 6万+

猜你喜欢

转载自blog.csdn.net/libusi001/article/details/103675349