JSP Web第五章整理復習 JSP訪問數據庫
阿新 • • 發佈:2017-12-27
lib word pass 常用 localhost active jdbc esc 程序
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
JSP Web第五章整理復習 JSP訪問數據庫