1.错误一
Mybatis拦截器错误
代码部分:
@Intercepts({@Signature(type = StatementHandler.class,method = "prepare",args = {Connection.class,Integer.class})})
public class PageInterceptor implements Interceptor {
}
报错:
java.lang.NoSuchMethodException: org.apache.ibatis.executor.statement.StatementHandler.prepare(java.sql.Connection)
at java.lang.Class.getMethod(Class.java:1786)
错误原因:
我用的mybatis版本是3.2.6,而MyBatis 3.4.0 之后,StatementHandler的prepare方法做了修改,增加了Integer参数
public interface StatementHandler {
//3.4.0后的版本
Statement prepare(Connection connection, Integer transactionTimeout)
throws SQLException;
void parameterize(Statement statement)
throws SQLException;
void batch(Statement statement)
throws SQLException;
int update(Statement statement)
throws SQLException;
<E> List<E> query(Statement statement, ResultHandler resultHandler)
throws SQLException;
<E> Cursor<E> queryCursor(Statement statement)
throws SQLException;
BoundSql getBoundSql();
ParameterHandler getParameterHandler();
}
修改方法:
方法一:不修改mybatis版本,改源代码如下
@Intercepts({@Signature(type = StatementHandler.class,method = "prepare",args = {Connection.class})})
public class PageInterceptor implements Interceptor {
}
方法二:修改pom.xml中mybatis版本为3.4.0以上,我改成了3.4.1
2.错误二
报错:
java.lang.AbstractMethodError: org.mybatis.spring.transaction.SpringManagedTransaction.getTimeout()Ljava/lang/Integer;
错误原因:
spring 和mybatis整合版本错误,这个也是因为我上面用了方法二改了mybatis版本导致的,导致mybatis-spring包整合版本不合适。
修改方法:
修改pom.xml文件中mybatis-spring整合包版本,我原来的包整合版本是1.2.0,现在改成了1.3.1
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>1.3.1</version>
</dependency>