填坑之路:IDEA使用pageHelper插件遇到的坑(博主已绝望)
·
看到这篇文章的小伙伴们,不知道你们使用IDEA的pageHelper插件时是否也遇到了类似于下面这种错误呢
java.lang.ClassNotFoundException: Cannot find class: com.github.pagehelper.PageIntercepetor
java.lang.ClassNotFoundException: Cannot find class: com.github.pagehelper.PageHelper
必须要指出的一点是,在5.x版本,mybatis-config.xml中配置pageHelper的格式为:
<plugins>
<plugin interceptor="com.github.pagehelper.PageInterceptor">
<!-- config params as the following -->
<!--分页参数合理化-->
<property name="reasonable " value="true"/>
</plugin>
</plugins>
而在4.x版本中,mybatis-config.xml中的配置为:
<plugins>
<plugin interceptor="com.github.pagehelper.PageHelper">
<!-- config params as the following -->
<property name="reasonable " value="true"/>
<!--<property name="dialect" value="mysql" />-->
</plugin>
</plugins>
如果你们想知道为什么,那么可以在jar包中查看到4.x版本的PageHelper实现了Interceptor接口,而在5.x版本当中由PageInterceptor来实现Interceptor接口,PageHelper继承了Dialect类。
看到这里时,你已经确认过你的版本没问题了,那么为什么还是会报错呢,而且弄得你快要绝望了呢,那么我就来揭秘了,也许这可能不是你所遇到的错误,但我也希望能与你分享!!
点击project structure
看到有两个刚刚加入的依赖,然后需要放入外部根目录包下,为什么要这么做,我也不太清楚哈哈哈哈,只不过我一直都是这样做的,不然连服务器都启动不了,听说这个操作类似于导包后的Build path功能。
然后重新启动服务器就应该成功了,前提是你的版本号要和配置文件的配置格式要对的上哦!祝你成功,加油!!!
更多推荐
已为社区贡献2条内容
所有评论(0)