我不认为你应该使用 的 thymeleaf-spring4 强> 依赖,但你应该使用Thymeleaf的Spring启动启动器。
对于Maven:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-thymeleaf</artifactId> </dependency>
对于Gradle:
compile("org.springframework.boot:spring-boot-starter-thymeleaf")
我建议使用 Spring Initializr 设置你的项目。这允许您选择任何Spring启动启动程序并将其添加到Gradle / Maven描述符中,这样您就不会通过选择依赖项来犯任何错误。