1.Springboot引入thymeleaf依赖,在pom文件中报错。去本地仓库找打开repository\org\springframework\boot\spring-boot-starter-thymeleaf\2.0.4.RELEASE
里面是unknown,多番寻找问题是版本的问题,换成就成功了。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
<version>2.0.4.RELEASE</version>
</dependency>