tomcat jndi

1.context.xml

<Resource name="jdbc/test" auth="Container"
type="javax.sql.DataSource" driverClassName="org.postgresql.Driver"
url="jdbc:postgresql://localhost:5432/test" username="test"
password="test" maxActive="500" maxIdle="50" maxWait="10000" />

2.web.xml
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/test</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
3.code
Context ctxctx = new InitialContext();
ds = (DataSource) ctx.lookup("java:comp/env/jdbc/test");
connection = ds.getConnection();

4.把jdbc 的jar包放入tomcat/lib下。

你可能感兴趣的:(tomcat)