com.github.pagehelper.PageHelper
来源:6-9 用户模块所有功能自测试
李琦12138
2019-12-19
把这个注销了,tomcat没问题。。。
不注销就回报一个错误,
PropertyAccessException 1: org.springframework.beans.MethodInvocationException: Property ‘properties’ threw exception; nested exception is com.github.pagehelper.PageException: java.lang.ClassNotFoundException: mysql
换成底下这个,也报错。项目一样启动不了。
写回答
2回答
-
Roger9943
2019-12-25
我另一个提问里面可能帮你解决,这个pagehelper更新了语句默认不需要value=mysql他能自动识别,你把他value删了就好了10 -
幻想不要钱
2019-12-19
java.lang.ClassNotFoundException: mysql
找不到mysql类
pom.xml重新导入看看
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.6</version>
</dependency>试看看
022019-12-20
相似问题