Springboot 整合 druid

1. 创建Springboot项目

首先,需要创建 Springboot 项目(或 module):

创建项目

添加 MyBatis Frameworkmysql 依赖(dependencies):

引入依赖

2. 额外添加Druid依赖

Maven依赖网址快捷入口:Maven依赖网址

首先,搜索想要查找的依赖:

查找依赖

由于我们是 springboot 和 druid整合,所以选择第二个:

选择依赖

添加依赖:

依赖
这里贴上 1.2.6 版本的 druid 依赖:

<!-- https://mvnrepository.com/artifact/com.alibaba/druid-spring-boot-starter -->
<dependency>
    <groupId>com.alibaba</groupId>
    <artifactId>druid-spring-boot-starter</artifactId>
    <version>1.2.6</version>
</dependency>

3. 配置druid

# 2. 配置相关信息
# 第一种配置方法:通过spring.datasource.type配置druid
#spring:
#  datasource:
#    driver-class-name: com.mysql.cj.jdbc.Driver   # mysql 驱动
#    url: jdbc:mysql://localhost:3306/springboot_test?characterEncoding=utf8&serverTimezone=UTC  # 连接数据库
#    username: root    # 数据库账户
#    password: root    # 数据库密码
#    type: com.alibaba.druid.pool.DruidDataSource

# 第二种配置方法:druid 专用配置(推荐)
spring:
  datasource:
    druid:
      driver-class-name: com.mysql.cj.jdbc.Driver   # mysql 驱动
      url: jdbc:mysql://localhost:3306/springboot_test?characterEncoding=utf8&serverTimezone=UTC  # 连接数据库
      username: root    # 数据库账户
      password: root    # 数据库密码

4. 验证

创建 pojo实体类dao接口参考我的另一篇整合文章:
springboot 整合 mybatis
这里直接进行测试:

package com.example;

import com.example.dao.StudentDao;
import org.junit.jupiter.api.Test;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.test.context.SpringBootTest;

@SpringBootTest
class SpringbootMybatisApplicationTests {
    @Autowired
    private StudentDao studentDao;

    @Test
    void contextLoads() {
        System.out.println(studentDao.getStudentById("20000116"));
    }

}

验证

通过包名可知 Druid 已经生效。

Logo

苏州本地的技术开发者社区,在这里可以交流本地的好吃好玩的,可以交流技术,可以交流招聘等等,没啥限制。

更多推荐