An attempt was made to call a method that does not exist.



Description:


An attempt was made to call a method that does not exist. The attempt was made from the following location:


    org.springframework.boot.autoconfigure.thymeleaf.ThymeleafAutoConfiguration$ThymeleafDefaultConfiguration.templateEngine(ThymeleafAutoConfiguration.java:142)


The following method did not exist:


    'void org.thymeleaf.spring5.SpringTemplateEngine.setRenderHiddenMarkersBeforeCheckboxes(boolean)'


The method's class, org.thymeleaf.spring5.SpringTemplateEngine, is available from the following locations:


    jar:file:/D:/DevInstall/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:/D:/DevInstall/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

当你创建一个web模块的springboot工程时,没有配置好thymeleaf但是像测试web功能的时候,会因为给thymeleaf自动配置但是找不到相应路径而报错,可以通过在主类添加exclude注解(如果你暂时不需要thymeleaf功能的话)

@SpringBootApplication(exclude = {ThymeleafAutoConfiguration.class})
public class SundayApplication {


    public static void main(String[] args) {
        SpringApplication.run(SundayApplication.class, args);
    }
}

或者可以通过在依赖路径里面修改thymeleaf的依赖,可以通过快捷键“Alt+Insert”,输入thymeleaf关键字,双击选中会自动配置好依赖

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

或者采用另一种办法,出现这种问题的原因一般是jar包版本不匹配,如果你需要用到thymeleaf功能的话,可以在pom文件的properties标签内添加如下代码块

<thymeleaf.version>3.0.9.RELEASE</thymeleaf.version>
<thymeleaf-layout-dialect.version>2.3.0</thymeleaf-layout-dialect.version>

你也可以检查自己的Maven仓库内是否有多个版本的thymeleaf,如果是的话就需要注明用哪个版本的。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值