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

时间:2023-03-09 18:43:32
java.lang.NoSuchMethodException: org.apache.ibatis.executor.statement.StatementHandler.prepare(java.sql.Connection)

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

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