网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

Servlet中怎么对Druid连接池进行整合

这篇文章将为大家详细讲解有关Servlet中怎么对Druid连接池进行整合,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

天柱网站建设公司成都创新互联公司,天柱网站设计制作,有大型网站制作公司丰富经验。已为天柱上1000家提供企业网站建设服务。企业网站搭建\外贸网站制作要多少钱,请找那个售后服务好的天柱做网站的公司定做!

druid配置(druid.properties)

#druid配置文件
#驱动
driverClassName=com.MySQL.jdbc.Driver
#url
url=jdbc:mysql://127.0.0.1:3306/cms?useUnicode=true&characterEncoding=utf8&useSSL=true
#用户名
username=root
#密码
password=root
#连接池初始化大小
initialSize=10
#活动链接
maxActive=10
#最小连接数
minIdle=10
#使用的内置过滤器  若不配置 则不会统计SQL执行
filters=stat

JDBC连接池

/**
 * Druid连接池
 * @author tangpengfei
 */
public class DruidUtil {
	
	static DruidDataSource dataSource;
	
	static {
		Properties prop = new Properties();
		try {
			prop.load(DruidUtil.class.getClassLoader().getResourceAsStream("druid.properties"));
			dataSource = (DruidDataSource)DruidDataSourceFactory.createDataSource(prop);
			//dataSource.addFilters("stat,log4j,wall");
		} catch (IOException e) {
			e.printStackTrace();
		} catch (Exception e) {
			e.printStackTrace();
		}
	}
	public static Connection getConn() {
		try {
			return dataSource.getConnection();
		} catch (SQLException e) {
			e.printStackTrace();
		}
		return null;
	}

}

web.xml配置

 
  	StatViewServlet
  	com.alibaba.druid.support.http.StatViewServlet
  	  
	  
	resetEnable  
	true  
      
      
	  
	loginUsername  
	admin  
      
      
	  
	loginPassword  
	admin  
      
  
  
  
  	StatViewServlet
  	/druid/*
  

关于Servlet中怎么对Druid连接池进行整合就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。


网站标题:Servlet中怎么对Druid连接池进行整合
标题来源:http://bjjierui.cn/article/jgchii.html

其他资讯