SpringBoot整合mybatis报错:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link fail

Posted Alan*Chen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SpringBoot整合mybatis报错:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link fail相关的知识,希望对你有一定的参考价值。

 

 

检查mapping.xml中mapper类的包名是否正确,查询语句返回参数设置是否正确

检查mapper中的方法名与mapping中的是否一致

检查application配置文件中mybatis的配置,classpath后没有/

mybatis.mapper-locations=classpath:mybatis/mapping/*.xml
mybatis.type-aliases-package=com.alan.mybatis.pojo

mapping.xml放在resources目录下

以上问题无误后,可以通过单元测试查看数据库连接是否有问题,如存在问题,说明application配置文件中的信息有误,或者mysql的服务没有启动

最后发现是mysql服务没有启动

以上是关于SpringBoot整合mybatis报错:com.mysql.cj.jdbc.exceptions.CommunicationsException: Communications link fail的主要内容,如果未能解决你的问题,请参考以下文章

spring+Mybatis 整合报错

SpringBoot3整合MyBatis报错:Property ‘sqlSessionFactory‘ or ‘sqlSessionTemplate‘ are required

SpringBoot整合Mybatis报错:Cause: java.lang.UnsupportedOperationException]

SpringBoot 整合Mybatis报错(Invalid bound statement (not found))

springboot整合mybatis(配置模式+注解模式)

SpringBoot 整合Mybatis报错解决(Failed to determine a suitable driver class)