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

 

上一篇:azkaban启动时出现错误:Could not find or load main class 12321


下一篇:Could not resolve view with name '............' in servlet with name 'dispatcherServl