Eclipse配置Tomcat6.0数据库连接池

纵观网上,在TOMCAT中进行配置的文章非常多,而专门写如何在项目中进行配置的文章很少。那么,如何在项目中进行配置呢?

大家都知道,Eclipse是会自动将项目放在workspace之中。有人说,那么就对WORKSPACE中的.SERVER进行配置,然后再对项目进行配置。然而,不知是否是RP问题,笔者只要对.SERVER下的server.xml进行配置,运行tomcat就会报错。

所以,我们就单独在项目里面进行配置。

首先,在workspace/项目名/WEBCONTENT/META-INF下建立context.xml,内容为:

<?xml version='1.0' encoding='utf-8'?> <Context> <WatchedResource>WEB-INF/web.xml</WatchedResource> <Resource name="jdbc/sqlserver" auth="Container" type="javax.sql.DataSource" maxActive="100" maxIdle="30" maxWait="10000" username="sa" password="*******" driverClassName="com.microsoft.jdbc.sqlserver.SQLServerDriver" url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=book" /> <ResourceLink name="jdbc/sqlserver" global="jdbc/sqlserver" type="javax.sql.DataSource"/> </Context>

然后,修改workspace/项目名/WEBCONTENT/WEB-INF下的web.xml为:

<?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5"> <display-name>MyDemo1</display-name> <welcome-file-list> <welcome-file>index.html</welcome-file> <welcome-file>index.htm</welcome-file> <welcome-file>index.jsp</welcome-file> <welcome-file>default.html</welcome-file> <welcome-file>default.htm</welcome-file> <welcome-file>default.jsp</welcome-file> </welcome-file-list> <resource-ref> <description /> <res-ref-name>jdbc/sqlserver</res-ref-name> <res-type>javax.sql.DataSource</res-type> <res-auth>Container</res-auth> </resource-ref> </web-app>

然后,再写一个JSP页面测试,index.jsp

<%@ page language="java" contentType="text/html; charset=GBK" pageEncoding="GBK"%> <%@page import="java.sql.*,javax.sql.*,javax.naming.*" %> <!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=GBK"> <title>Insert title here</title> </head> <body> <% Connection conn=null; try { InitialContext ctx=new InitialContext(); DataSource ds=(DataSource)ctx.lookup("java:/comp/env/jdbc/sqlserver"); conn=ds.getConnection(); if(conn!=null) { out.println("数据源配置正确"); } } catch(Exception ex) { out.println(ex.getMessage()); } %> </body> </html>

记住,要将连接MS SQLSERVER的三个驱动包放于项目的lib下以及TOMCAT 6.0的LIB下。

你可能感兴趣的:(eclipse,tomcat,数据库连接池,Microsoft,sqlserver,encoding)