MyBatis笔记----@Intercepts({@Signature(type = StatementHandler.class, method = "prepare", args = {Connection.class

使用MyBatis 3.4.1或者其以上版本

@Intercepts({

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

 

使用MyBatis 3.4.1(不包含)以下

@Intercepts({

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

上一篇:vue 源码 学习days8-比较两个对象的方法


下一篇:使用numpy实现批量梯度下降的感知机模型