jsp怎么使用mysql数据库连接池 MySQL数据库连接池

建站技术 建站分享 2年前 (2022-09-14) 203次浏览

文章摘要:jsp怎么使用mysql数据库连接池 MySQL数据库连接池

jsp使用mysql数据库连接池的方法 1.在conf目录中打开context.xml文件,并在文件写如下代码 […]

jsp使用mysql数据库连接池的方法

1.在conf目录中打开context.xml文件,并在文件写如下代码;

 
<Resource

name = "jdbc/ConnectionPool"

auth = "Container"

type = "javax.sql.DataSource"

password = "123456"

driverClassName = "com.mysql.jdbc.Driver"

maxIdle = "2"

maxWait = "5000"

username = "root"

url = "jdbc:mysql://localhost:3306/study?characterEncoding=GBK"

maxActive = "4"/>

Web-INF/web.xml

 

2.然后打开web.xml文件,在文件写入代码;

 
GuestBook

jdbc/ConnectionPool

javax.sql.DataSource

Container

 

声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:jsp怎么使用mysql数据库连接池 MySQL数据库连接池
文章链接:http://www.7966.org/post/14553.html
转载请注明出处

喜欢 (0)