mybatis 分页插件拦截注解不同版本不同的写法

来源:互联网 发布:淘宝拍下宝贝如何发货 编辑:程序博客网 时间:2024/05/16 10:20

mybatis @Intercepts注解的写法

使用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})})

其他小记:mybatis 中jdbcType=date和timestamp 是有格式区别的,date 类型只能精确到天,timestamp 能精确到时分秒

原创粉丝点击