SpringBoot内部集成Druid实现数据源加载

本文详细介绍了如何在SpringBoot项目中集成Druid数据源,包括在application.yml中配置数据库连接信息,以及创建DruidDataSource的配置类,设置相关参数。此外,还提到了添加Druid依赖到pom.xml文件中的步骤。
摘要由CSDN通过智能技术生成

闲话不多说了直接贴代码了。。。

因为是springboot框架采用的application.yml配置---配置如下:

server: 
  port: 8080
#提供servlet支持加上pom.xml中的三个tomcat依赖  使springboot项目支持jsp页面
  jsp-servlet: 
    init-parameters:
      development: true
#配置i项目应用名称      
spring: 
  application: 
    name: my-pp
  mvc: 
    view:
      suffix: .jsp
      prefix: /WEB-INF/view/  
  datasource:
      driver-class-name: com.mysql.jdbc.Driver
      url: jdbc:mysql://localhost:3306/teststu?useUnicode=true&characterEncoding=utf-8&useSSL=false
      username: root
      password: root
#通过阿里的德鲁伊来配置数据库的数据源 ///并且在项目中的config包中配置了数据切面及一些配置           
      type: com.alibaba.druid.pool.DruidDataSource
# 下面为连接池的补充设置,应用到上面所有数据源中
# 初始化大小,最小,最大
      initialSize: 1
      minIdle: 3
      maxActive: 20
      # 配置获取连接等待超时的时间
      maxWait: 60000
      # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
      timeBetweenEvictionRunsMillis: 60000
      # 配置一个连接在池中最小生存的时间,单位是毫秒
      minEvictableIdleTimeMillis: 30000
      validationQuery: select 'x'
      testWhileIdle: true
      testOnBorrow: false
      testOnReturn: false
      # 打开PSCache,并且指定每个连接上PSCache的大小
      poolPreparedStatements: true
      maxPoolPreparedStatementPerConnectionSize: 20
      # 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
      filters: slf4j
      # 通过connectProperties属性来打开mergeSql功能;慢SQL记录
      connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000
      # 合并多个DruidDataSource的监控数据

      #useGlobalDataSourceStat: true 


----》在自己的项目pom.xml中加入 德鲁伊的jar依赖

<!--阿里 druid德鲁伊 数据源jar依赖-->
<dependency>
  <groupId>com.alibaba</groupId>
  <artifactId>druid</artifactId>
  <version>1.1.10</version>

</dependency>


之后就是在项目中配置》》》》》》》》》》》如下:

在项目中新建config包在config包下建DataSource_0java Bean

package com.zwq.config;
import java.sql.SQLException;
import javax.sql.DataSource;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import com.alibaba.druid.pool.DruidDataSource;
<

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值