使用pagehelper踩的坑PageHelper cannot be cast
java.lang.ClassCastException: com.github.pagehelper.PageHelper cannot be cast出现这个的问题在于配置的问题。4.2版本前的,分页插件 5.0 版本和 4.2.x 实现完全不同所以会报上面的错误com.github.pagehelper.PageHelper。5.0 是用这个类com.github.pagehelpe...
·
java.lang.ClassCastException: com.github.pagehelper.PageHelper cannot be cast
出现这个的问题在于配置的问题。4.2版本前的,分页插件 5.0 版本和 4.2.x 实现完全不同所以会报上面的错误com.github.pagehelper.PageHelper。
5.0 是用这个类com.github.pagehelper.PageInterceptor
4.2.x是用这个类com.github.pagehelper.PageHelper
1、mybatis的配置
<plugins>
<!-- com.github.pagehelper.PageHelper为PageHelper类所在包名 -->
<plugin interceptor="com.github.pagehelper.PageHelper">
<!-- 4.0.0以后版本可以不设置该参数 -->
<!--<property name="dialect" value="mysql"/>-->
<!-- 该参数默认为false -->
<!-- 设置为true时,会将RowBounds第一个参数offset当成pageNum页码使用 -->
<!-- 和startPage中的pageNum效果一样-->
<property name="offsetAsPageNum" value="true"/>
<!-- 该参数默认为false -->
<!-- 设置为true时,使用RowBounds分页会进行count查询 -->
<property name="rowBoundsWithCount" value="true"/>
<!-- 设置为true时,如果pageSize=0或者RowBounds.limit = 0就会查询出全部的结果 -->
<!-- (相当于没有执行分页查询,但是返回结果仍然是Page类型)-->
<property name="pageSizeZero" value="true"/>
<!-- 3.3.0版本可用 - 分页参数合理化,默认false禁用 -->
<!-- 启用合理化时,如果pageNum<1会查询第一页,如果pageNum>pages会查询最后一页 -->
<!-- 禁用合理化时,如果pageNum<1或pageNum>pages会返回空数据 -->
<property name="reasonable" value="true"/>
<!-- 3.5.0版本可用 - 为了支持startPage(Object params)方法 -->
<!-- 增加了一个`params`参数来配置参数映射,用于从Map或ServletRequest中取值 -->
<!-- 可以配置pageNum,pageSize,count,pageSizeZero,reasonable,orderBy,不配置映射的用默认值 -->
<!-- 不理解该含义的前提下,不要随便复制该配置 -->
<!--<property name="params" value="pageNum=start;pageSize=limit;"/>-->
<!-- 支持通过Mapper接口参数来传递分页参数 -->
<!--<property name="supportMethodsArguments" value="true"/>-->
<!-- always总是返回PageInfo类型,check检查返回类型是否为PageInfo,none返回Page -->
<!--<property name="returnPageInfo" value="check"/>-->
</plugin>
</plugins>
2、spring和mybatis整合配置文件的配置方式
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<!-- 2.1注入数据源 -->
<property name="dataSource" ref="dataSource"></property>
<!-- 2.2注册实体 -->
<property name="mapperLocations" value="classpath:com/lion/mapper/*Mapper.xml"></property>
<!-- 配置pagehelper -->
<property name="plugins">
<array>
<bean class="com.github.pagehelper.PageHelper">
<property name="properties">
<value>
helperDialect=sqlserver
reasonable=true
supportMethodsArguments=true
params=count=countSql
autoRuntimeDialect=true
</value>
</property>
</bean>
</array>
</property>
</bean>
pagehelper-4.2.1的jar包
https://download.csdn.net/download/qq_39019865/10618919
pagehelper官方文档:https://pagehelper.github.io/docs/howtouse/
开放原子开发者工作坊旨在鼓励更多人参与开源活动,与志同道合的开发者们相互交流开发经验、分享开发心得、获取前沿技术趋势。工作坊有多种形式的开发者活动,如meetup、训练营等,主打技术交流,干货满满,真诚地邀请各位开发者共同参与!
更多推荐
已为社区贡献1条内容
所有评论(0)