DruidConfiguration

springboot中druid监控的配置(DruidConfiguration)

当数据库连接池使用druid时,我们进行一些简单的配置就能查看到sql监控,web监控,url监控等等。
以springboot为例,配置如下

import com.alibaba.druid.support.http.StatViewServlet;
import com.alibaba.druid.support.http.WebStatFilter;
import org.mybatis.spring.SqlSessionFactoryBean;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.boot.autoconfigure.jdbc.DataSourceBuilder;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.web.servlet.FilterRegistrationBean;
import org.springframework.boot.web.servlet.ServletRegistrationBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.context.annotation.Primary;
import org.springframework.core.io.support.PathMatchingResourcePatternResolver;
import org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor;

import javax.sql.DataSource;

/**

  • springboot继承 druid监控
    */
    @Configuration
    public class DruidConfiguration {

    @Bean
    public ServletRegistrationBean statViewServlet() {
    ServletRegistrationBean servletRegistrationBean = new ServletRegistrationBean(new StatViewServlet(), “/druid/*”);
    //白名单:
    servletRegistrationBean.addInitParameter(“allow”, “127.0.0.1”);
    //IP黑名单 (存在共同时,deny优先于allow) : 如果满足deny的即提示:Sorry, you are not permitted to view this page.
    servletRegistrationBean.addInitParameter(“deny”, “192.168.1.100”);
    //登录查看信息的账号密码.
    servletRegistrationBean.addInitParameter(“loginUsername”, “druid”);
    servletRegistrationBean.addInitParameter(“loginPassword”, “12345678”);
    //是否能够重置数据.
    servletRegistrationBean.addInitParameter(“resetEnable”, “false”);
    return servletRegistrationBean;
    }

    @Bean
    public FilterRegistrationBean statFilter() {
    FilterRegistrationBean filterRegistrationBean = new FilterRegistrationBean(new WebStatFilter());
    //添加过滤规则.
    filterRegistrationBean.addUrlPatterns("/");
    //添加不需要忽略的格式信息.
    filterRegistrationBean.addInitParameter(“exclusions”, "
    .js,.gif,.jpg,.png,.css,.ico,/druid/");
    return filterRegistrationBean;
    }

    @Bean
    PersistenceExceptionTranslationPostProcessor persistenceExceptionTranslationPostProcessor() {
    return new PersistenceExceptionTranslationPostProcessor();
    }

    //配置数据库的基本链接信息
    @Bean(name = “dataSource”)
    @Primary
    @ConfigurationProperties(prefix = “spring.datasource”) //可以在application.properties中直接导入
    public DataSource dataSource() {
    return DataSourceBuilder.create().type(com.alibaba.druid.pool.DruidDataSource.class).build();
    }

    @Bean
    public SqlSessionFactoryBean sqlSessionFactory(@Qualifier(“dataSource”) DataSource dataSource) throws Exception {
    SqlSessionFactoryBean bean = new SqlSessionFactoryBean();
    bean.setDataSource(dataSource);
    PathMatchingResourcePatternResolver resolver = new PathMatchingResourcePatternResolver();
    bean.setMapperLocations(resolver.getResources(“classpath:/mappers/*.xml”));
    return bean;
    }
    }

配置完成之后,我们就可以访问url进行登录并查看
在这里插入图片描述
在这里插入图片描述

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值