SpringBoot与thymeleaf版本问题冲突

1.报错如下
An attempt was made to call the method org.thymeleaf.spring5.SpringTemplateEngine.setRenderHiddenMarkersBeforeCheckboxes(Z)V but it does not exist. Its class, org.thymeleaf.spring5.SpringTemplateEngine, is available from the following locations:

    jar:file:/E:/springboot/repository/org/thymeleaf/thymeleaf-spring5/3.0.9.RELEASE/thymeleaf-spring5-3.0.9.RELEASE.jar!/org/thymeleaf/spring5/SpringTemplateEngine.class

It was loaded from the following location:

    file:/E:/springboot/repository/org/thymeleaf/thymeleaf-spring5/3.0.9.RELEASE/thymeleaf-spring5-3.0.9.RELEASE.jar


Action:

Correct the classpath of your application so that it contains a single, compatible version of org.thymeleaf.spring5.SpringTemplateEngine

2.原因

       版本问题改为这样

       3.0.9.RELEASE
       2.2.2
--------------------- 
作者:编程吴彦祖 
来源:CSDN 
原文:https://blog.csdn.net/akyj1021/article/details/89012061 
版权声明:本文为博主原创文章,转载请附上博文链接!

你可能感兴趣的:(java)