tomcat 5.5.28配置数据库连接池

今天研究一天,哥终于配置好啦!!!
我配置的数据库是mysql
步骤:
一。复制MySQL驱动程序到
    C:\Program Files\Apache Software Foundation\Tomcat 5.5\common\lib
二。在C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf目录下 的server.xml文件的
  <GlobalNamingResources></GlobalNamingResources>之间加入:
  
   <Resource
      name="jdbc/name"//JNDI名字随便取
      auth="Container"
      type="javax.sql.DataSource"
      maxActive="4"
      maxIdle="2"
      username="root"//数据库账号
      maxWait="5000"
      validationQuery="SELECT * FROM chengji"//可以去掉
      driverClassName="com.mysql.jdbc.Driver"//驱动类名
      password="111111"//密码
      url="jdbc:mysql://localhost:3306/test"/>//连接URL



三。在C:\Program Files\Apache Software Foundation\Tomcat 5.5\conf\Catalina\localhost 目录下新建个配置文件(我的:tomDbcp.xml)名字要与我们的项目名字(即:所发布的web应用的名称)相同
我配置的如下:

  <Resource
      name="jdbc/name"//JNDI名字随便取
      auth="Container"
      type="javax.sql.DataSource"
      maxActive="4"
      maxIdle="2"
      username="root"//数据库账号
      maxWait="5000"
      validationQuery="SELECT * FROM chengji"//可以去掉
      driverClassName="com.mysql.jdbc.Driver"//驱动类名
      password="111111"//密码
      url="jdbc:mysql://localhost:3306/test"/>//连接URL


 
这里的内容必须和server.xml加入那部分一样不然报错:
  :Cannot create JDBC driver of class '' for connect URL 'null'

四。web.xml中配置:
    <?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
 
  <description>MySQL Test App</description>
  <resource-ref>
      <description>DB Connection</description>
      <res-ref-name>jdbc/name</res-ref-name>
      <res-type>javax.sql.DataSource</res-type>
      <res-auth>Container</res-auth>
  </resource-ref>
 
</web-app>

五。测试程序:
   ,,,,,,,,免啦我发个我的工程吧,请下载

你可能感兴趣的:(apache,tomcat,mysql,xml,SQL Server)