PageHelper分页不生效解决方案

在spring配置文件里面,我的项目是applicationContext.xml。
在sqlSessionFactory的bean配置里面加上官网的配置。

<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
     
     <property name="plugins">
         <array>
             <bean class="com.github.pagehelper.PageInterceptor">
                 <property name="properties">
                     
                     <value>
                         params=value1
                     value>
                 property>
             bean>
         array>
     property>
bean>

你可能感兴趣的:(java后端遇到的坑)