2015年7月1日 星期三

使用tomcat連資料庫

tomcat選自己的資料庫,1~3都copy起來,1.放到META-INF/context.xml,這裡有講。
整合如下:以oracle為例
context.xml
<Resource name="jdbc/myoracle" auth="Container"
              type="javax.sql.DataSource" driverClassName="oracle.jdbc.OracleDriver"
              url="jdbc:oracle:thin:@127.0.0.1:1521:mysid"
              username="username" password="password" maxTotal="20" maxIdle="10"
              maxWaitMillis="-1"/>
web.xml
<resource-ref>
    <description>Oracle Datasource example</description>
    <res-ref-name>jdbc/myoracle</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
</resource-ref>
java
Context initContext = new InitialContext();
Context envContext  = (Context)initContext.lookup("java:/comp/env");
DataSource ds = (DataSource)envContext.lookup("jdbc/myoracle");
Connection conn = ds.getConnection();

沒有留言:

張貼留言