spring-boot常用数据源及对druid的整合

spring-boot整合jdbc

  • spring-boot整合jdbc后,spring-boot可以支持以下数据源,默认是使用tomcat-jdbc数据源。

      spring-boot常用数据源及对druid的整合_第1张图片

  • 对于spring-boot支持的数据源,如果要使用该数据源,必须进行以下操作(以dbcp2为例)

    (1)在application.yml中指定type,并进行相关配置

spring:
  datasource:
    username: scott
    password: abc123
    url: jdbc:oracle:thin:@127.0.0.1:1521:orcl
    driver-class-name: oracle.jdbc.OracleDriver
    type: org.apache.commons.dbcp2.BasicDataSource



    # 初始化大小,最小,最大
    dbcp2.initialSize: 5
    dbcp2.minIdle: 5
    dbcp2.maxActive: 20
    

     (2)在pom.xml引入dbcp2的相关依赖

 
        
            org.apache.commons
            commons-dbcp2
        

    (3)运行测试类获取数据源

 

 

  •  对于spring-boot没有支持的数据源,比如我们开发常用的druid,要想使用则必须进行以下操作

     (1)在application.yml中指定type,并进行一些其他配置

spring:
  datasource:
    username: scott
    password: abcdfe
    url: jdbc:oracle:thin:@127.0.0.1:1521:orcl
    driver-class-name: oracle.jdbc.OracleDriver
    type: com.alibaba.druid.pool.DruidDataSource



    # 初始化大小,最小,最大
    initialSize: 5
    minIdle: 5
    maxActive: 20
    # 配置获取连接等待超时的时间
    maxWait: 60000
    # 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位是毫秒
    timeBetweenEvictionRunsMillis: 60000
    # 配置一个连接在池中最小生存的时间,单位是毫秒
    minEvictableIdleTimeMillis: 300000
    validationQuery: SELECT 1 FROM DUAL
    testWhileIdle: true
    testOnBorrow: false
    testOnReturn: false
    # 打开PSCache,并且指定每个连接上PSCache的大小
    poolPreparedStatements: true
    maxPoolPreparedStatementPerConnectionSize: 20
    # 配置监控统计拦截的filters,去掉后监控界面sql无法统计,'wall'用于防火墙
    spring.datasource.filters: stat,wall,log4j
    # 通过connectProperties属性来打开mergeSql功能;慢SQL记录
    connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=5000


     (2)在pom.xml引入druid的依赖

  
            com.alibaba
            druid
            1.1.0
  

    (3)在java包的com包下,新建一个configuration包,在configuration包新建一个DruidConfig.java类,来配置druid

@Configuration
public class DruidConfig {

    @ConfigurationProperties(prefix = "spring.datasource")
    @Bean
    public DataSource druid(){
        return new DruidDataSource();
    }

    因为spring-boot默认没有支持druid,所以必须在DruidConfig.java类填写如上代码。

    application.yml所配置的的属性(initialSize,minIdle,maxActive)才能被加载进druid数据源。

   (4)在DruidConfig.java中继续为Druid数据源添加其他配置

//配置Druid的监控
    //1.配置一个管理后台的Servlet
    @Bean
    public ServletRegistrationBean statViewServlet(){
        ServletRegistrationBean bean = new ServletRegistrationBean(new StatViewServlet(),"/druid/*");
        Map initParams = new HashMap<>();
        initParams.put("loginUsername","admin");
        initParams.put("loginPassword","123456");
        initParams.put("allow","");            //ip白名单,默认全部
        //initParams.put("deny","127.0.0.1");   //ip黑名单
        bean.setInitParameters(initParams);
        return bean;
    }

    //2.配置一个监控filter
    @Bean
    public FilterRegistrationBean webStatFilter(){
        FilterRegistrationBean bean = new FilterRegistrationBean();
        bean.setFilter(new WebStatFilter());
        Map initparams = new HashMap<>();
        initparams.put("exclusions","*.js,*.css,/druid/*");
        bean.setInitParameters(initparams);
        bean.setUrlPatterns(Arrays.asList("/*"));
        return bean;
    }

  配置一个管理后台的Servlet后,访问:localhost:8080/druid的效果如下:

  spring-boot常用数据源及对druid的整合_第2张图片

 通过自己设置的账号密码登录进去:

  spring-boot常用数据源及对druid的整合_第3张图片

  配置一个监控filter后在web应用里面可以查看到如下信息:

  spring-boot常用数据源及对druid的整合_第4张图片

  

你可能感兴趣的:(JavaEE)