Mybatis_PageHelper jar包的使用

杜禄
2023-12-01

在使用PageHelper前首先要准备两个jar包

1.PageHelper Central Repository: com/github/pagehelper/pagehelper

2.jsqlparser Central Repository: com/github/jsqlparser/jsqlparser

导入后进行配置

        <property name="plugins">
            <array>
                <bean class="com.github.pagehelper.PageInterceptor">
                    <property name="properties">
                        <!--使用下面的方式配置参数,一行配置一个 -->
                        <value>
                            helpDialect=mysql
                            reasonable=true
                        </value>
                    </property>
                </bean>
            </array>
        </property>

 类似资料: