web.xml 中 resource-ref 的注意事项

 配置说明:

web.xml 中配置

<resource-ref>
  <description>Employees Database for HR Applications</description>
  <res-ref-name>jdbc/EmployeeDB</res-ref-name>
  <res-ref-type>javax.sql.DataSource</res-ref-type>
  <res-auth>Container</res-auth>
</resource-ref>

 

res-ref-name/
res-env-ref-name

资源的名称,相对于java:comp/env context

  

 

对应的jabc连接池配置文件:

tomcat\conf\Catalina\localhost\employer.xml

<?xml version="1.0" encoding="UTF-8"?>
<Context docBase="E:\tomcat\webapps\test" path="/test" reloadable="true">
	<Resource name="jdbc/EmployeeDB"
	auth="Container"
	type="javax.sql.DataSource"
	maxActive="1000"
	maxIdle="30"
	maxWait="100"
	username="root"
	password="root"
	driverClassName="com.mysql.jdbc.Driver"
	url="jdbc:mysql://localhost:3306/test?useUnicode=true"/>
</Context>

  

posted @ 2015-12-03 17:28  雨中飞鹭  阅读(3529)  评论(0编辑  收藏  举报