其他分享
首页 > 其他分享> > Could not find method on interface org.apache.ibatis.executor.statement.StatementHandler named prepa

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之后的写法

 

标签:named,Could,value,class,3.4,Signature,StatementHandler,method
来源: https://www.cnblogs.com/qianxiaoPro/p/15835001.html