Tomcat下配置Mysql的连接池
2007-04-26 15:48:36 来源:WEB开发网核心提示: jdbc:mysql://localhost/shopdb?useUnicode=true&characterEncoding=gb2312 driverClassName com.mysql.jdbc.Driver maxIdle 10 username shopadm这里的参数和上一种方法
jdbc:mysql://localhost/shopdb?useUnicode=true&characterEncoding=gb2312
driverClassName
com.mysql.jdbc.Driver
maxIdle
10
username
shopadm
这里的参数和上一种方法中添加到server.xml里的信息几乎是完全一样的。
2.在对应程序的WEB-INF下建立一个web.xml文档,添加如下信息:
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/mysql</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
</web-app>
更多精彩
赞助商链接