mysql数据源tomcat中配置

第一步:找到tomcat的配置文件D:/tomcat-5.5.17/conf/下下的context.xml配置文件。
在<Context>和</Context>标签之间加入如下内容:
<Resource name="jdbc/MSTX" auth="Container"
type="javax.sql.DataSource"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/mstx"
username="root"
password="2010zb"
maxActive="100"
maxIdle="30"
maxWait="10000"/>

name:数据源名称
auth:认证方式,一般为"Container"
maxActive:连接池中最大的数据库连接数
maxIdle:最大空闲连接数
username:连接数据库的用户
password:连接数据库的密码
driverClassName:数据库驱动类
url:连接数据库的URL地址


第二步:在项目中的/WebRoot/META-INF/目录下web.xml配置加入:
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/MSTX</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>

你可能感兴趣的:(tomcat,mysql,数据库,web.xml,jdbc)