P164 例5-1 常用SQL语句
P178 数据库连接池
(1)连接池的作用
存储多个数据库连接对象,当程序需要时,从池中获取1个连接,程序执行完成后再还给连接池。避免数据库连接建立、关闭的开销。提高数据库访问速度。
(2)在Tomcat中使用连接池的步骤
1、Tomcat目录下config\context.xml,在标签<context>中加入以下内容:
<Resource name = "jdbc/xxx" auth = "Container" type = "javax.sql.DataSource" maxIdle = "10" maxWait = "1000" maxActive = "10" username = "root" password = "root" driverClassName = "com.MySql.jdbc.Driver" url = "jdbc:MySql://localhost:3306/xxx"/>
2、在项目WEB-INF目录下找到web.xml配置文件,然后打开,在标签<web-app>中加入以下内容:
<Resource-ref> <description>DB Connection</description> <res-ref-name>jdbc/xxx</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref>
3、将JDBC驱动jar包放到Tomcat安装目录下的lib文件夹里。
(3)例5-4
原文地址:https://www.cnblogs.com/yg1024/p/8127131.html
时间: 2024-11-10 20:18:52