[b]第一种:[/b]
1.直接在conf/context.xml中添加:
1.在conf/server.xml中的GlobalNamingResources标签下增加:
2.在conf/context.xml添加调用:
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" />
[b]第二种:[/b]
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"/>