解决springboot 项目中thymeleaf包的冲突

在使用thymeleaf的时候有jar包不兼容的情况。
项目中需要

    
        org.thymeleaf
        thymeleaf
        3.0.11.RELEASE
    
    
    
        org.thymeleaf
        thymeleaf-spring5
        3.0.11.RELEASE
    

这两个引用,特别是thymeleaf-spring5这个包,亲测用这个不会报兼容性错误。如果采用其他的版本会报
java.lang.IllegalStateException: Error processing condition on org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration.templateEngine
异常。

你可能感兴趣的:(Java后台,Servlet)