本文主要是介绍org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.Persiste,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
在做spring整合Mybatis时报错如下:
重点如下:
我们可以看到 提示 数据库查询异常,先排除掉代码没问题,那可能就是pom文件Mysql问题
MySQL版本低
修改前:
修改后:
<dependency><groupId>mysql</groupId><artifactId>mysql-connector-java</artifactId><version>5.1.46</version></dependency>
修改后可完美运行!!!!
这篇关于org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.exceptions.Persiste的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!