SpringBoot项目连接MySQL数据库

Posted 我是聂可

tags:

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

前言

本篇基于mysql数据库 8.0.29版本进行说明,需要提前安装MySQL数据库。具体教程详见:《最新版MySQL 8.0 的下载与安装(详细教程)》

一、导入依赖

一般在新建SpringBoot项目时,勾选了MySQL以及JDBC依赖,可以直接使用,无须再次导入依赖
依赖查找:https://mvnrepository.com/

1.在pom文件中导入MySQL依赖

<dependency>
	<groupId>mysql</groupId>
    <artifactId>mysql-connector-java</artifactId>
    <version>8.0.29</version>
</dependency>

2.在pom文件中导入JDBC依赖

<dependency>
	<groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-jdbc</artifactId>
</dependency>

3.在pom文件中导入mybatis-plus依赖

<dependency>
	<groupId>com.baomidou</groupId>
    <artifactId>mybatis-plus-boot-starter</artifactId>
    <version>3.5.1</version>
</dependency>

二、连接数据库

在application.yml中进行连接数据库的简单配置,yml文件中格式不能错位,不然不会读取配置

spring:
  datasource:
    driver-class-name: com.mysql.cj.jdbc.Driver
    type: com.zaxxer.hikari.HikariDataSource
    url: jdbc:mysql://localhost:3306/sbvue?useUnicode=true&characterEncoding=utf-8&useSSL=true
    username: root
    password: 

数据库中的数据

三、测试

使用mybatis-plus进行映射

1.创建UserPo实体类

采用了Lombok简化代码

@Data
@NoArgsConstructor
@AllArgsConstructor
@TableName("user")
public class UserPO 
    @TableId(value = "id",type = IdType.AUTO)
    private int id;
    @TableField("name")
    private String name;
    @TableField("age")
    private int age;

2.在Mapper包下创建UserMapper

@Repository
public interface UserMapper extends BaseMapper<UserPO> 

3.在启动类增加注解

在启动类SbvApplication 增加@MapperScan(“包名”),包名需要一直到mapper包

@SpringBootApplication
@MapperScan("com.wsnk.sbv.mapper")
public class SbvApplication 
    public static void main(String[] args) 
        SpringApplication.run(SbvApplication.class, args);
    

4.测试

在SbvApplicationTests 测试类中,查询所有用户

@SpringBootTest
class SbvApplicationTests 
    @Autowired
    private UserMapper userMapper;
    @Test
    public void ceshi()
        for (UserPO userPO : userMapper.selectList(null)) 
            System.out.println(userPO.toString());
        
    

查询成功

以上是关于SpringBoot项目连接MySQL数据库的主要内容,如果未能解决你的问题,请参考以下文章

MySQL设置时区和默认编码

连接数据库报错:ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/var/lib/mys

Docker Compose部署Springboot+Mysql项目

SpringBoot项目连接MYSQL的时区问题

Docker Compose部署Springboot+Mysql项目

Docker Compose部署Springboot+Mysql项目