thymeleaf加载报错

来源:6-2 SpringBoot 整合thymeleaf

qq_林_9

2018-08-16 12:03

环境jdk1.8 Spring Boot 2.0

在启动项目时预警

[THYMELEAF][main] Template Mode 'HTML5' is deprecated. Using Template Mode 'HTML' instead.

在访问时报错

Error resolving template "thymeleaf/center/center", template might not exist or might not be accessible by any of the configured Template Resolvers

问题:

在加载thymeleaf的时候为什么没有引入

<html xmlns:th="
写回答 关注

1回答

  • 韦煾
    2018-08-18 21:53:07

    检查下application.properties配置哈

    spring.thymeleaf.prefix=classpath:/templates/

    spring.thymeleaf.suffix=.html

    spring.thymeleaf.mode=HTML5

    spring.thymeleaf.encoding=UTF-8

    spring.thymeleaf.servlet.content-type=text/html

    # \u5173\u95ed\u7f13\u5b58, \u5373\u65f6\u5237\u65b0, \u4e0a\u7ebf\u751f\u4ea7\u73af\u5883\u9700\u8981\u6539\u4e3atrue

    spring.thymeleaf.cache=false


SpringBoot开发常用技术整合

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

102171 学习 · 508 问题

查看课程

相似问题