mybatis连接MySQL8出现的问题
Posted pp153
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis连接MySQL8出现的问题相关的知识,希望对你有一定的参考价值。
使用mysql8,在整合ssm框架,用mybatis逆向工程生成的代码测试时,执行到数据库查询前均正常,但进行查询时,便卡主没有反应了,设置了日志、try catch等也不报错,页面就在那一直转,之前mybatis自动生成代码都是正常的,然后在测试类中,使用Connection进行连接测试并查询数据库,也是能够正常查询到数据的:
Connection conn = null;
try {
String userName = "root";
String password = "[email protected]";
String jdbcurl = "jdbc:mysql://localhost:3306/test?useUnicode=true&useSSL=false&autoReconnect=true&characterEncoding=UTF-8";
Class.forName("com.mysql.jdbc.Driver").newInstance();
conn = DriverManager.getConnection(jdbcurl, userName, password);
String sql = "select * from tb_user";
PreparedStatement pstmt = conn.prepareStatement(sql);
ResultSet rs = pstmt.executeQuery();
String result = "";
while (rs.next()) {
int id = rs.getInt("id");
String name = rs.getString("username");
String status = rs.getString("phone");
result += id + " " + name + " " + status + " ";
}
System.out.println(result);
而逆向工程的却不行:
UserExample example = new UserExample();
UserExample.Criteria criteria = example.createCriteria();
criteria.andIdEqualTo(userId);
List<User> list = userMapper.selectByExample(example);//这一步进去后就出不来了。。。
经过确认ssm其他配置文件都没有发现有问题,然后就想是不是自己用的MySQL8版本的问题,毕竟之前使用Navicat连接MySql8也是出了好几个问题,于是便将mysql-connect-java版本由5.1.6升级为8.0.11,并修改了db.properties文件:
#数据库连接 注意 文件内不要留有空格
jdbc.driver=com.mysql.cj.jdbc.Driver
jdbc.url=jdbc:mysql://localhost:3306/test?useSSL=false&useUnicode=true&characterEncoding=UTF8&serverTimezone=GMT
jdbc.username=root
[email protected]
重启项目后,一切终于正常了。。。。。。
以上是关于mybatis连接MySQL8出现的问题的主要内容,如果未能解决你的问题,请参考以下文章
solr配置DataImport连接MySQL8数据库注意:
Spring Boot连接数据库,从MySql5.13飞跃到MySql8.0.18的坑
MyBatis3 连接MySQL8 提示:message from server: “Host ‘xxx‘ is not allowed to connect to this MySQL server