日期:2014-05-16 浏览次数:20497 次
tomcat 安装目录下的conf目录中的context.xml与web.xml文件分别修改如下:
context.xml 新加如下内容:
<Resource name="jdbc/mysql" auth="Container" type="javax.sql.DataSource" driverClassName="com.mysql.jdbc.Driver" url="jdbc:mysql://数据库地址:3306/数据库名称?autoReconnect=true" username="数据库用户名" password="数据库密码" maxActive="30" maxIdle="30" maxWait="10000" removeAbandoned="true" removeAbandonedTimeout="300" logAbandoned="true"/>
web.xml 新增如下内容
<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>