Failed properties: Property 'properties' threw exception; nested exception is com.github.pagehelper.PageException: java.lang.ClassNotFoundException: mysql
仔细看了mybatis.xml配置文件时发现配置写成了这样
<property name="properties">
<value>
dialect=mysql
reasonble=true
</value>
后来在网上查发现原来分页插件数据库的配置dialect已经弃用了,而而改成了helperdialect
<property name="properties">
<value>
helperdialect=mysql
reasonble=true
</value>