spring boot 使用mybatis连接华为云MySQL数据库

Posted firewang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了spring boot 使用mybatis连接华为云MySQL数据库相关的知识,希望对你有一定的参考价值。

spring boot使用mybatis连接mysql

applicationg.yml设置:

  spring:

  datasource:
url: jdbc:mysql://***.*.***.***:3306/socks?useSSL=false
username: root
password: *******
driver-class-name: com.mysql.cj.jdbc.Driver

mybatis:
configuration:
map-underscore-to-camel-case: true #开启驼峰映射

启动类中添加@MapperScan(),解决启动时找不到bean的问题
@MapperScan("com.***.***.mapper")
华为云绑定公网IP后连接超时的问题:
在华为云安全组-添加入向规则,增加3306端口,允许所有IP访问
连接后提示无权限访问:
Access denied for user ‘root‘@‘***.***.***.***‘ (using password: YES)

在Mysql数据库中执行以下语句放开root用户的外网访问权限
grant all privileges on *.* to root@‘%‘ identified by ‘******‘ //***表示数据库连接密码

以上是关于spring boot 使用mybatis连接华为云MySQL数据库的主要内容,如果未能解决你的问题,请参考以下文章

spring boot连接mysql数据库

Spring Boot中使用MyBatis

(转) Spring Boot MyBatis 连接数据库

Spring Boot 集成 Mybatis(druid 数据库连接池 以及 分页配置)

如何在spring boot中配置mybatis db连接?

Spring Boot 介绍