SpringBoot引入thymeleaf3报错

一、报错信息

在SpringBoot中引入thymeleaf3版本

Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.22.2:test (default-test) on project restfulcrud: There are test failures.

Please refer to E:\code\Java\IDEAProjectWorkPlace\restfulcrud\target\surefire-reports for the individual test results.
Please refer to dump files (if any exist) [date].dump, [date]-jvmRun[N].dump and [date].dumpstream.

二、原因

pom.xml中properties标签内的thymeleaf标签名问题

这里用的是org.springframework.boot下的spring-boot-starter-thymeleaf,使用做标签时可能与org.thymeleaf有冲突,导致包获取不正确


    1.8
    3.0.2.RELEASE
    2.1.1



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

三、解决方法

应改为


    1.8
    3.0.2.RELEASE
    
    2.1.1

你可能感兴趣的:(IDEA报错)