第一步:导入jar包。将此段代码粘贴至pom.xml文件中的dependencies段。
<dependency>
<groupId>com.github.pagehelper</groupId>
<artifactId>pagehelper</artifactId>
<version>5.1.2</version>
</dependency>
第二步:配置SqlSessionFactory对象。将此段代码放入applicationContex.xml文件的配置SqlSessionFactory的bean段中。
<property name="plugins">
<array>
<bean class="com.github.pagehelper.PageInterceptor">
<property name="properties">
<props>
<prop key="helperDialect">mysql</prop>
<prop key="reasonable">true</prop>
</props>
</property>
</bean>
</array>
</property>