com.github.pagehelper.PageHelper cannot be cast to org.apache.ibatis.plugin.Interceptor

在MyBatis的配置文件中修改對pageHelper的配置
修改前

<plugins>
    <plugin interceptor="com.github.pagehelper.PageHelper">
        <!-- 配置數據庫的方言 -->
        <!-- 設置數據庫類型 Oracle,Mysql,MariaDB,SQLite,Hsqldb,PostgreSQL六種數據庫-->        
        <property name="dialect" value="mysql"/>
    </plugin>
</plugins>

 

修改後

<plugins>
    <plugin interceptor="com.github.pagehelper.PageInterceptor">
        <!-- 配置數據庫的方言 -->
        <!-- 設置數據庫類型 Oracle,Mysql,MariaDB,SQLite,Hsqldb,PostgreSQL六種數據庫-->        
        <!-- <property name="dialect" value="mysql"/> -->
    </plugin>
</plugins>

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章