Spring Boot--使用Thymeleaf遇到过的坑

Spring Boot–使用Thymeleaf遇到过的坑

错误1:Thymeleaf模板引擎报错问题:
首先Thymeleaf是需要导依赖的:

org.springframework.boot
spring-boot-starter-thymeleaf

如果需要更改版本号,利用相应的代码,在pox.xml文档中在进行配置就可以了,代码如下,这里配置的都是最高版本:

1.8
3.0.9.RELEASE
2.2.2

但是我当时按照这个版本配置,构建完成,在运行的时候出现了错误,花了一上午的时间百度,发现是版本的问题,更改版本如下,问题解决

1.8
3.0.11.RELEASE
2.1.1

错误2:.由于controller位置建错,无法访问
实际上应该是在com.atguigu目录下建立一个controller文件夹,重新建立一个hellocontroller,正确的目录情况应该是这样:

Spring Boot--使用Thymeleaf遇到过的坑_第1张图片

你可能感兴趣的:(thymeleaf模板引擎,controller建立位置)