码迷,mamicode.com
首页 > 数据库 > 详细

数据库连接池连接方法:

时间:2018-01-12 00:04:56      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:mysq   数据库   creat   nta   idle   获取   coding   contex   system   

先要下载好数据库连接驱动jar文件:mysql-connector-java-5.1.22-bin 放在tomcat的lib文件夹下,并在然后根据以下两种方法加以配置:

1、全局方法:
在tomcat的conf目录下打开context.xml加入代码:ConnectionPool为连接池名字,可随便取,但是要对应;newsmanagersystem为数据库名
<Context>
<Resource
name = "jdbc/myconn"
auth = "Container"
type = "javax.sql.DataSource"
password = "root"
driverClassName = "com.mysql.jdbc.Driver"
maxIdle = "10"
maxWait = "1000"
username = "root"
url = "jdbc:MYSQL://localhost:3306/study?characterEncoding=GBK"
maxActive = "8"/>

<WatchedResource>Web-INF/web.xml</WatchedResource>
</Context>

然后在工程的web.xml文件中加入代码:
<resource-ref>
<description>GuestBook</description>
<res-ref-name>jdbc/myconn</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>

 

2、对某一个Web项目的方法:
在META-INF文件夹下context.xml文件中加入代码:
<Context>
<Resource
name = "jdbc/myconn"
auth = "Container"
type = "javax.sql.DataSource"
password = "root"
driverClassName = "com.mysql.jdbc.Driver"
maxIdle = "10"
maxWait = "1000"
username = "root"
url = "jdbc:MYSQL://localhost:3306/newsmanagersystem?characterEncoding=GBK"
maxActive = "8"/>

<WatchedResource>Web-INF/web.xml</WatchedResource>
</Context>


根据以上两种方法就可在程序中创建数据源对象:
Context ctx = new InitialContext();
Context ctxing = (Context) ctx.lookup("java:comp/env");
//获取连接池对象
DataSource ds =(DataSource)ctxing.lookup("jdbc/ConnectionPool");
//创建连接
Connection conn = ds.getConnection();
Statement st= conn.createStatement();

数据库连接池连接方法:

标签:mysq   数据库   creat   nta   idle   获取   coding   contex   system   

原文地址:https://www.cnblogs.com/qxl1234/p/8270766.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!