sqlServer 2008 jdbc 连接池的配置与应用
时间:2014-09-08 21:17 来源:linux.it.net.cn 作者:it
sqlServer 2008 jdbc 连接池的配置与应用,供大家学习参考。
1、将sqlserver2008.jar添加到D:\apache-tomcat-6.0.10\apache-tomcat-6.0.10\lib。
2、配置tomcat下的conf下的context.xml文件,在<context></context>之间添加连接池如下:
复制代码代码如下:
<Resource name="jdbc/TestDB"
auth="Container"
type="javax.sql.DataSource"
maxActive="100"
maxIdle="30"
maxWait="10000"
username="sa"
password="111"
driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver"
url="jdbc:sqlserver://localhost:1433;DatabaseName=CuLeg" />
3.配置你的应用下的web.xml中的<web-app></web-app>之间加入: xml 代码
复制代码代码如下:
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/TestDB</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
4.大功告成,不用在原来的server.xml里面配置了,下面就可以编写测试程序了,这个网上就很多了,主要的就上面,当然要把连接驱动程序都放到tomcat6下的lib下面.测试代码如下:
复制代码代码如下:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ page import="java.sql.*"%>
<%@ page import="javax.sql.*"%>
<%@ page import="javax.naming.*"%>
<%@ page session="false"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<%out.println("<h1>Hello,test JNDI ! </h1>");%>
<%
DataSource ds=null;
InitialContext ctx = new InitialContext();
// Context envctx = (Context) ctx.lookup("java:comp/env");
// DataSource ds = (DataSource) envctx.lookup("jdbc/TestDB");
ds=(DataSource)ctx.lookup("java:comp/env/jdbc/TestDB");
Connection conn=ds.getConnection();
Statement st=conn.createStatement();
String sql="select * from account";
ResultSet rs=st.executeQuery(sql);
while(rs.next()) {%>
您的第一个字段内容为:<%=rs.getString(1)%>
您的第二个字段内容为:<%=rs.getString(2)%>
<br>
<%}%>
<%out.print("使用jdbc驱动操作数据库操作成功,恭喜你");%>
<%rs.close();
st.close();
conn.close();
%>
</body>
</html>
(责任编辑:IT)
sqlServer 2008 jdbc 连接池的配置与应用,供大家学习参考。
1、将sqlserver2008.jar添加到D:\apache-tomcat-6.0.10\apache-tomcat-6.0.10\lib。
复制代码代码如下:
<Resource name="jdbc/TestDB"
auth="Container" type="javax.sql.DataSource" maxActive="100" maxIdle="30" maxWait="10000" username="sa" password="111" driverClassName="com.microsoft.sqlserver.jdbc.SQLServerDriver" url="jdbc:sqlserver://localhost:1433;DatabaseName=CuLeg" />
3.配置你的应用下的web.xml中的<web-app></web-app>之间加入: xml 代码
复制代码代码如下:
<resource-ref>
<description>DB Connection</description> <res-ref-name>jdbc/TestDB</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref>
4.大功告成,不用在原来的server.xml里面配置了,下面就可以编写测试程序了,这个网上就很多了,主要的就上面,当然要把连接驱动程序都放到tomcat6下的lib下面.测试代码如下:
复制代码代码如下:
<%@ page language="java" contentType="text/html; charset=UTF-8" // Context envctx = (Context) ctx.lookup("java:comp/env");
// DataSource ds = (DataSource) envctx.lookup("jdbc/TestDB"); (责任编辑:IT) |