手动添加spring-boot-starter-thymeleaf

时间:2018-03-07 11:06:20

标签: java spring-boot thymeleaf

如何手动将spring-boot-starter-thymeleaf添加到我的Java项目中? 我正在尝试使用Maven中的依赖项:

<dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
        <version>1.5.10.RELEASE</version>
</dependency>

但它对我不起作用,所以我不能使用百里香的选项。 我处理Java 8。 我将不胜感激任何帮助。

1 个答案:

答案 0 :(得分:1)

在我的春季启动项目中,我正在使用正在运行的1.5.3.RELEASE

您可以从百万美元依赖项中删除版本标记 并在Parent

中添加版本
<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>1.5.3.RELEASE</version>
    <relativePath />
</parent>
<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
</dependencies>