赞
踩
最近在学习mybatis,跟之前学过的flask框架的sqlalchemy有点类似(orm),于此将遇到的问题写在这上面,其实我更喜欢写在电脑的submit上面,但说不定你们在学习中也遇到了这些问题正好可以帮你们解决。
问题1.mybatis连接MySQL8.0出现的问题
(1)在MySQL5.1中,使用mybatis框架连接MySQL5.1数据库驱动是:
<!-- 数据库驱动 -->
<property name="driver" value="com.mysql.jdbc.Driver"/>
<!-- url地址 -->
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?characterEncoding=utf-8"/>
(2)在MySQL8.0中,使用mybatis框架连接MySQL8.0数据库驱动是:
<!-- 数据库驱动 -->
<property name="driver" value="com.mysql.cj.jdbc.Driver"/>
<!-- url地址 -->
<property name="url" value="jdbc:mysql://localhost:3306/gzmybatis1?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT"/>
(3)在MySQL8.0中,配置db.properties如下,不需要添加 & 。
jdbc.driverClassName=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/gzmybatis1?useUnicode=true&characterEncoding=utf-8&serverTimezone=GMT
jdbc.username=root
jdbc.password=myroot
问题2:compile编译后target下不生成mybatis.xml文件:
解决:先clean,然后编辑器工具栏Build->Build Project重新构建项目,再执行compile。
问题3:关于jdbc报错,8MySQL连接出com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure:
解决:首先mysql连接的驱动在5.7版本及之前驱动是com.mysql.jdbc.Driver
在mysql8.0更新之后需要注意,已经换成了com.mysql.cj.jdbc.Driver
如果出现com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link failure等问题首先检查jdbc的url是否正确,在8.0以上需要注意,有些参数已经被废弃但是必须的参数有以下:
jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncodeing=UTF-8&useSSL=false&serverTimezone=GMT
连接的符号也从“&”换成“&;”,注意其他的符号在在xml文件中并不支持,有些参数已经被废弃,以上的都是在MySQL8.0版本出现的问题。
(我个人useSSL=true也会报错但是改为false变为正常。)
问题4:使用数据库配置文件时出错
在mybatis.xml主配置文件中连接数据库的url写为jdbc:mysql://localhost:3306/javaee?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT,但当用数据库属性配置文件时要将“&”换成“&”,即jdbc:mysql://localhost:3306/javaee?useUnicode=true&characterEncoding=UTF-8&useSSL=false&serverTimezone=GMT
问题5:报错java.lang.ExceptionInInitializerError...
Caused by: org.apache.ibatis.exceptions.PersistenceException:
### Error building SqlSession.
### The error may exist in top/thyqq/dao/StudentDao.java (best guess)
### Cause: org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: org.apache.ibatis.binding.BindingException: Type interface top.thyqq.dao.StudentDao is already known to the MapperRegistry.
原因:mybatis.xml主配置文件中重复导入mapper文件,之前用第一种方法(一个<mapper>一次导入一个mapper文件),后面用第二种导包的方法时未注释掉方法一,导致这个包中的mapper被我导入了两次,注释掉解决。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。