java.lang.NoSuchMethodException: org.apache.ibatis.executor.statement.StatementHandler.prepare(java.

Posted Zshun

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java.lang.NoSuchMethodException: org.apache.ibatis.executor.statement.StatementHandler.prepare(java.相关的知识,希望对你有一定的参考价值。

此错误是由于版本造成的,如果使用mybatis3.4版本以上,配置拦截器规则应增加Intger

@Intercepts({
        @Signature(
                type= StatementHandler.class,
                method = "prepare",
                args = {Connection.class,Integer.class}
        )
})

 

以上是关于java.lang.NoSuchMethodException: org.apache.ibatis.executor.statement.StatementHandler.prepare(java.的主要内容,如果未能解决你的问题,请参考以下文章