1. 配置连接池:
a) 在tomcat-5/conf/Catalina/localhost下创建myweb.xml文件,文件名同web应用程序的名字
b) 填入上下文配置内容:
<Context path="/myweb" docBase="myweb"
debug="5" reloadable="true" crossContext="true">
<Resource name="jdbc/TestDB"
auth="Container"
type="javax.sql.DataSource"
maxActive="100"
maxIdle="30"
maxWait="10000"
username="root"
password=""
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=UTF-8&autoReconnect=true"
/>
</Context>
c) 修改web.xml
填入
<description>MySQL Test App</description>
<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>
测试通过就OK了