MyBatis3.4.0以上的分页插件错误:Could not find method on interface org.apache.ibatis.executor.statement.Statem

Posted Jim

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyBatis3.4.0以上的分页插件错误:Could not find method on interface org.apache.ibatis.executor.statement.Statem相关的知识,希望对你有一定的参考价值。

错误:

Could not find method on interface org.apache.ibatis.executor.statement.StatementHandler named prepare. Cause: java.lang.NoSuchMethodException: org.apache.ibatis.executor.statement.StatementHandler.prepare(java.sql.Connection)] with root cause

问题解决:

其实这个是版本更新之后,官方取消了这个函数,转而升级了两个参数的方法,改动如下:

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

官方的解释如下:

In 3.4.0, StatementHandler#prepare(Connection) has been changed to StatementHandler#prepare(Connection,Integer).

See https://github.com/mybatis/mybatis-3/blob/master/src/main/java/org/apache/ibatis/executor/statement/StatementHandler.java#L33-L34 .

参考:

https://github.com/mybatis/mybatis-3/issues/645

以上是关于MyBatis3.4.0以上的分页插件错误:Could not find method on interface org.apache.ibatis.executor.statement.Statem的主要内容,如果未能解决你的问题,请参考以下文章

PageHelper和MybatisPlus的分页插件冲突

使用BootStrap的table表格,如何利用BootStrap的分页插件Paginator实现表格的分页

Mybatis中的分页插件

Mybatis的分页插件PageHelper分页失效的原因

遇到不同的分页插件 比如bootStrap paganation和jqGrid,但后台代码该怎么写

使用Mybatis分页插件PageHelper时的分页问题