TOMCAT6.0配置JNDI数据源

第一种:
1.直接在conf/context.xml中添加:
<Resource name="jdbc/oracleds" auth="Container" type="javax.sql.DataSource" username="test" password="test" driverClassName="oracle.jdbc.OracleDriver" url="jdbc:oracle:thin:@localhost:1521:test" maxActive="8" maxIdle="30" maxWait="10000" />
第二种:
1.在conf/server.xml中的GlobalNamingResources标签下增加:

<Resource name="jdbc/oracleds" auth="Container" type="javax.sql.DataSource" username="test" password="test" driverClassName="oracle.jdbc.OracleDriver" url="jdbc:oracle:thin:@localhost:1521:test" maxActive="8" maxIdle="30" maxWait="10000" />

2.在conf/context.xml添加调用:
<ResourceLink name="jdbc/oracleds" global="jdbc/oracleds" type="javax.sql.DataSource"/>

你可能感兴趣的:(tomcat6)