您的位置:首页 > 财经 > 金融 > Mybatis-PageHelper Reentrantlock锁使用问

Mybatis-PageHelper Reentrantlock锁使用问

2025/1/23 8:08:43 来源:https://blog.csdn.net/CoderCoding/article/details/142042755  浏览:    关键词:Mybatis-PageHelper Reentrantlock锁使用问

Mybatis-PageHelper应该是目前使用比较广泛的一个Mybatis分页插件。我在几个项目里都引入了该插件。今天偶然阅读其源码,却发现了一个不小的问题。

注:我阅读的是最新的4.1.3的源码。

该分页插件的核心是PageHelper类,该类实现了Mybatis提供的Interceptor接口。接口定义的intercept方法实现如下:

/*** Mybatis拦截器方法** @param invocation 拦截器入参* @return 返回执行结果* @throws Throwable 抛出异常*/
public Object intercept(Invocation invocation) throws Throwable {if (autoRuntimeDialect) {SqlUtil sqlUtil = getSqlUtil(invocation);return sqlUtil.processPage(invocation);} else {if (autoDialect) {initSqlUtil(invocation);}return sqlUtil.processPage(invocation);}
}

全文详见个人独立博客:https://www.coderli.com/mybatis-pagehelper-reentrantlock-bug/

https://www.coderli.com/mybatis-pagehelper-reentrantlock-bug/icon-default.png?t=O83Ahttps://www.coderli.com/mybatis-pagehelper-reentrantlock-bug/

加入频道领免费Java学习资料:腾讯频道邀请

加入大佬免费带队Java学习群:Java学习群

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com