### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
最近在学mybatis~遇上了第一个坑【难受啊哈,感觉有必要讲一下】
按理说在数据库连接的url对应的值中useSSL=true&useUnicode=true表示的是安全连接为true,看上去貌似没有毛病【也是因为一直觉得没毛病,才导致我排错排了好久都没察觉它的问题】
【说明一下】我用的是5.7的MySQL,2018版本的idea。想连接idea自带的MySQL数据库,连是连上了,不过报了个错(忘记具体的错叫什么了),这也导致我后面的程序运行不起来,报### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure。
网上各种方法都试了还是没有起效。后来试着把useSSL=true&useUnicode=true的值改成false,结果错误都解决了【but,我不知道这是为什么】
【好像罗里吧嗦讲得乱了些,各位道友海涵~】
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
<!--configuration:核心配置文件-->
<configuration>
<!--environments 表示一套环境配置,可以配置多套环境,如果需要的话-->
<environments default="development">
<environment id="development">
<!--transactionManager表示事务管理,默认是JDBC方式-->
<transactionManager type="JDBC"/>
<!--数据库连接的信息-->
<dataSource type="POOLED">
<!--mysql驱动-->
<property name="driver" value="com.mysql.jdbc.Driver"/>
<property name="url" value="jdbc:mysql://localhost:3306/mybatis?useSSL=true&useUnicode=true&characterEncoding=UTF-8"/>
<property name="username" value="你的数据库用户名"/>
<property name="password" value="数据库密码"/>
</dataSource>
</environment>
</environments>
<mappers>
<mapper resource="com/lobster/dao/UserMapper.xml"></mapper>
</mappers>
</configuration>