进行mybatis项目分页插件配置遇到的问题
pom.xml文件:
mybatis-config.xml:
原因是进行mybatis-config插件配置的时候,interceptor属性的类的全限定符写错了,,,
修改后:
<plugins>
<plugin interceptor="com.github.pagehelper.PageHelper">
<!--插件语法对应的分页类型-->
<property name="helperDialect" value="mysql"/>
</plugin>
</plugins>