Could not find method on interface org.apache.ibatis.executor.statement.StatementHandler named prepa

3.4.0之前分页

/*@Intercepts(value = {@Signature(type = StatementHandler.class, method = "prepare",
    args = {Connection.class})})*/ //3.40之前的写法

3.4.0之后分页

@Intercepts(value = {@Signature(type = StatementHandler.class, method = "prepare",
    args = {Connection.class,Integer.class})})//3.40之后的写法
多了一个Interger.class的参数


原链接:http://www.cnblogs.com/EasonJim/p/7056700.html


猜你喜欢

转载自blog.csdn.net/u012817635/article/details/79811882
今日推荐