Druid监控页面配置与使用

博客引用处(以下内容在原有博客基础上进行补充或更改,谢谢这些大牛的博客指导):
Druid监控页面配置与使用

一、Maven中添加Durid连接池依赖



  com.alibaba
  druid
  1.0.29

二、Spring 中配置Druid数据源,并设置监控参数



  
  
  
  

  
  
  
  

  
  

  
  

  
  

  
  
  
  

  
  
  

三、web.xml中配置Druid监控的Servlet


  
  DruidStatView
  com.alibaba.druid.support.http.StatViewServlet
  
  
  loginUsername
  druid
  
  
  
  loginPassword
  bounter
  
  
  
  DruidStatView
  /druid/*
  

四、浏览器访问 http://localhost:8080/druid/index 或 http://localhost:8080/druid/

你可能感兴趣的:(其他)