码迷,mamicode.com
首页 > Web开发 > 详细

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

时间:2019-11-25 23:39:55      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:can   hsql   acl   文件   apach   cep   ann   设置   value   

在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>

 

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

标签:can   hsql   acl   文件   apach   cep   ann   设置   value   

原文地址:https://www.cnblogs.com/wanerhu/p/11931439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!