InteliJ和Maven没有解决Thymeleaf依赖问题

时间:2018-05-12 13:13:24

标签: java spring spring-mvc spring-boot thymeleaf

我正在使用:: Spring Boot(v2.0.2.RELEASE) Java版本是1.8.0_162 虽然我试图在Maven inteliJ中添加Thymeleaf模板的依赖关系但是没有解决它,同时采取一些方法并且我以完全相同的方式并且有工作

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

它没有解析而不是在静态文件夹下创建模板 谢谢

1 个答案:

答案 0 :(得分:0)

在应用程序的application.properties文件中添加:

spring.thymeleaf.mode=LEGACYHTML5

并在pom.xml中为nekohtml添加依赖项,如下所示

<dependency>
        <groupId>net.sourceforge.nekohtml</groupId>
        <artifactId>nekohtml</artifactId>
        <version>1.9.22</version>
    </dependency>