码农知识堂 - 1000bd
  •   Python
  •   PHP
  •   JS/TS
  •   JAVA
  •   C/C++
  •   C#
  •   GO
  •   Kotlin
  •   Swift
  • SpringBoot项目连接MySQL数据库


    前言

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

    一、导入依赖

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

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

    
    	mysql
        mysql-connector-java
        8.0.29
    
    
    • 1
    • 2
    • 3
    • 4
    • 5

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

    
    	org.springframework.boot
        spring-boot-starter-jdbc
    
    
    • 1
    • 2
    • 3
    • 4

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

    
    	com.baomidou
        mybatis-plus-boot-starter
        3.5.1
    
    
    • 1
    • 2
    • 3
    • 4
    • 5

    二、连接数据库

    在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: 
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    数据库中的数据
    在这里插入图片描述

    三、测试

    使用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;
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    2.在Mapper包下创建UserMapper

    @Repository
    public interface UserMapper extends BaseMapper {
    }
    
    • 1
    • 2
    • 3

    3.在启动类增加注解

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

    @SpringBootApplication
    @MapperScan("com.wsnk.sbv.mapper")
    public class SbvApplication {
        public static void main(String[] args) {
            SpringApplication.run(SbvApplication.class, args);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    4.测试

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

    @SpringBootTest
    class SbvApplicationTests {
        @Autowired
        private UserMapper userMapper;
        @Test
        public void ceshi(){
            for (UserPO userPO : userMapper.selectList(null)) {
                System.out.println(userPO.toString());
            }
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    查询成功
    在这里插入图片描述

  • 相关阅读:
    微服务面试问题小结( 微服务、分布式、MQ、网关、zookeeper、nginx)
    11.1 校招 实习 内推 面经
    centos 文件分割
    洛谷P2370 yyy2015c01 的 U 盘
    Qt元对象系统:QMetaMethod
    Layui实现之登陆页面&&实现扩展模块
    java-net-php-python-ssm房产信息管理系统计算机毕业设计程序
    ONLYOFFICE8.1版本桌面编辑器测评
    Java扫码点餐小程序源码 智慧点餐系统源码 点餐APP SaaS模式
    mysql 数据库在liunx 上的备份和恢复
  • 原文地址:https://blog.csdn.net/m0_67401660/article/details/126516137
  • 最新文章
  • 沪漂五周年了:我越来越迷茫了
    Agentic Skill Routing 实战:别再把所有 Skill 塞进 AI Agent 上下文
    MySQL-Seconds_behind_master的精度误差
    [MAF预定义ChatClient中间件-03]CachingChatClient——利用缓存省钱省时间
    AI的至暗历史:从万众期待到被政府撤资,AI的两次死亡徘徊
    Agent OS :五种驯服不确定性的范式
    PortSwigger SQL注入LAB11
    数据库即时编译JIT
    [Begin]AI Learn Data Day 0
    深度学习进阶(二十七)现代 LLM 的核心架构设计其二:SwiGLU
  • 热门文章
  • 十款代码表白小特效 一个比一个浪漫 赶紧收藏起来吧!!!
    奉劝各位学弟学妹们,该打造你的技术影响力了!
    五年了,我在 CSDN 的两个一百万。
    Java俄罗斯方块,老程序员花了一个周末,连接中学年代!
    面试官都震惊,你这网络基础可以啊!
    你真的会用百度吗?我不信 — 那些不为人知的搜索引擎语法
    心情不好的时候,用 Python 画棵樱花树送给自己吧
    通宵一晚做出来的一款类似CS的第一人称射击游戏Demo!原来做游戏也不是很难,连憨憨学妹都学会了!
    13 万字 C 语言从入门到精通保姆级教程2021 年版
    10行代码集2000张美女图,Python爬虫120例,再上征途
小工具 小游戏
Copyright © 2022 侵权请联系2656653265@qq.com    京ICP备2022015340号-1

京公网安备 11010502049817号