Eplices中配置Mybatis时遇见The error may exist in SQL Mapper Configuration,相关问题的解决方案

2022/3/21 19:28:01

本文主要是介绍Eplices中配置Mybatis时遇见The error may exist in SQL Mapper Configuration,相关问题的解决方案,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

最近在学习Mybatis的有关知识,发现了一些很常见的因配置或代码问题造成的数据库连接错误问题,下面我就给大家总结一下我所遇到的“疑难杂症”和一步步的解决方法!

1.初学者往往会因为eplices中没有导入对数据库连接的jar包而出现以下问题

 Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException: 
### Error querying database.  Cause: java.sql.SQLException: Error setting driver on UnpooledDataSource. Cause: java.lang.ClassNotFoundException: Cannot find class: com.mysql.jdbc.Driver
### The error may exist in com/qfedu/mapper/StudentMapper.xml
### The error may involve student.findStudentBySnameAndCourse

### The error occurred while executing a query

这是由于你没有使用 mysql-connector-java-8.0.28.jar驱动jar包,这里我们去官网下载配置即可,下载链接:MySQL :: Download Connector/J

当下载好jar包导入之后这个问题就解决了,如图

2.当配置好jar包,再此运行时又出现了

Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException: 
### Error building SqlSession.
### The error may exist in SQL Mapper Configuration

Exception in thread "main" org.apache.ibatis.exceptions.PersistenceException: 
### Error building SqlSession.
### The error may exist in SQL Mapper Configuration

我在这里撞了一天的南墙,当我们看见### The error may exist in SQL Mapper Configuration时,就要知道错误的原因是mapper映射文件的配置出现了问题,在.xml文件中去检查错误,我反反复复把每个xml文件重新敲了很多遍才发现我的password写成了passward,所以只需要将a改过来即可解决

在编程中的书写问题真的很重要,尤其是在配置文件中,往往一个空格或者字母就会导致整个项目散架,大家不要带入自我化英语,一定培养良好的编程习惯!!!

3.再来补充一些次要问题,注意检查Java的配置环境和运行环境是否一致,当java和javac配置版本不同时就会导致出现这种问题,我的电脑装了jdk1.8和jdk11.0。当我去查看时发现配置出了问题,我的版本是1.8,结果成了11,只需要将11改成1.8即可

 

这是一些配置上最经常出现的问题,同时,我们在运行JavaWeb项目时也要注意查看Java框架  ,这里的配置也要注意。 



这篇关于Eplices中配置Mybatis时遇见The error may exist in SQL Mapper Configuration,相关问题的解决方案的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程