温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

使用springboot怎么对druid连接池进行整合

发布时间:2020-11-30 15:41:46 来源:亿速云 阅读:241 作者:Leah 栏目:开发技术

今天就跟大家聊聊有关使用springboot怎么对druid连接池进行整合,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

使用springboot默认的连接池

导入springboot data-jdbc依赖

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

配置文件配置连接池

spring:  datasource:   username: root   password: 5201314   url: jdbc:mysql:///jqmb?serverTimezone=UTC   driver-class-name: com.mysql.cj.jdbc.Driver

springboot默认的连接池

@Autowired    DataSource dataSource;   @Test   void contextLoads() {     System.out.println(dataSource.getClass());     System.out.println("____________________________________");   }

使用springboot怎么对druid连接池进行整合

使用连接池druid

导入druid依赖

<dependency>       <groupId>com.alibaba</groupId>       <artifactId>druid</artifactId>       <version>1.0.18</version>     </dependency>

配置文件配置druid的属性

spring:  datasource:   username: root   password: 5201314   url: jdbc:mysql:///jqmb?serverTimezone=UTC   driver-class-name: com.mysql.cj.jdbc.Driver   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   poolPreparedStatements: true   filters: stat,wall,log4j   maxPoolPreparedStatementPerConnectionSize: 20   useGlobalDataSourceStat: true   connectionProperties: druid.stat.mergeSql=true;druid.stat.slowSqlMillis=500

使用springboot怎么对druid连接池进行整合

配置类中对druid属性进行绑定

@Configuration public class DataSource_Druid_Configure {   @ConfigurationProperties(prefix = "spring.datasource")   @Bean   public DruidDataSource getDataSour(){     return new DruidDataSource();   }

使用springboot怎么对druid连接池进行整合

配置Druid的监控后台

//配置Druid的监控   //1、配置一个管理后台的Servlet   @Bean   public ServletRegistrationBean statViewServlet(){     ServletRegistrationBean bean = new ServletRegistrationBean(new StatViewServlet(), "/druid/*");     Map<String,String> initParams = new HashMap<>();     initParams.put("loginUsername","admin");//登录用户名     initParams.put("loginPassword","123456");//登录密码     initParams.put("allow","");//默认就是允许所有访问     initParams.put("deny","192.168.15.21");//拒绝访问     bean.setInitParameters(initParams);     return bean;   }   //2、配置一个web监控的filter   @Bean   public FilterRegistrationBean webStatFilter(){     FilterRegistrationBean bean = new FilterRegistrationBean();     bean.setFilter(new WebStatFilter());     Map<String,String> initParams = new HashMap<>();     initParams.put("exclusions","*.js,*.css,/druid/*");     bean.setInitParameters(initParams);     bean.setUrlPatterns(Arrays.asList("/*"));     return bean;   }

访问http://localhost:8090/druid/login.html

使用springboot怎么对druid连接池进行整合

如果sql监控失效需要导入log4j 依赖

  <dependency>       <groupId>log4j</groupId>       <artifactId>log4j</artifactId>       <version>1.2.17</version>     </dependency>

看完上述内容,你们对使用springboot怎么对druid连接池进行整合有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注亿速云行业资讯频道,感谢大家的支持。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI