사용자 도구

사이트 도구


wiki:eclipse:resin

문서의 이전 판입니다!


Resin

  • description : Resin과 관련된 내용 기술
  • author : 주레피
  • email : dhan@repia.com
  • lastupdate : 2020-06-04

Jndi 설정법

jndi(Java Naming and Directory interface)

<database>
  <jndi-name>jdbc/mysql</jndi-name>
  <driver type="com.mysql.jdbc.Driver">
    <url>jdbc:mysql://localhost:3306/database</url>
    <user>user</user>
    <password>password</password>
  </driver>
  <prepared-statement-cache-size>64</prepared-statement-cache-size>
  <max-connections>20</max-connections>
  <max-idle-time>30s</max-idle-time>
</database>
 
<database>
  <jndi-name>jdbc/oracle</jndi-name>
  <driver type="oracle.jdbc.pool.OracleConnectionPoolDataSource">
    <url>jdbc:oracle:thin:@127.0.0.1:1521:xe</url>
    <user>user</user>
    <password>password</password>
    <connectionProperties>
      <SetBigStringTryClob>true</SetBigStringTryClob>
    </connectionProperties>
  </driver>
 
  <prepared-statement-cache-size>64</prepared-statement-cache-size>
  <max-connections>20</max-connections>
  <max-idle-time>30s</max-idle-time>
</database>
 
<database>
  <jndi-name>jdbc/mssql</jndi-name>
  <driver type="com.microsoft.sqlserver.jdbc.SQLServerDriver">
    <url>jdbc:sqlserver:// 127.0.0.1:1433;DatabaseName=database</url>
    <user>user</user>
    <password>password</password>
  </driver>
  <prepared-statement-cache-size>64</prepared-statement-cache-size>
  <max-connections>20</max-connections>
  <max-idle-time>30s</max-idle-time>
</database>
 
<database>
  <jndi-name>jdbc/db2</jndi-name>
  <driver type="com.ibm.db2.jcc.DB2Driver">
    <url>jdbc:db2://127.0.0.1:50000/database</url>
    <user>user</user>
    <password>password</password>
  </driver>
  <prepared-statement-cache-size>64</prepared-statement-cache-size>
  <max-connections>20</max-connections>
  <max-idle-time>30s</max-idle-time>
</database>
<%@ page contentType="text/html; charset=utf-8" %>
<%@ page import="javax.naming.*, java.sql.*, javax.sql.*" %>
<%
String jndi = "java:comp/env/jdbc/mysql";
InitialContext ctx = new InitialContext();    // 현재 실행중인 등록된 컨텍스트를 가져옴
DataSource ds = (DataSource)ctx.lookup(jndi); // 데이터소스 획득 
 
Connection conn = null;
Statement stmt = null;
ResultSet rs = null;
 
try
{
   conn = ds.getConnection();
   stmt = conn.createStatement();
   rs = stmt.executeQuery("SELECT name, email, age FROM tb_user");
   while(rs.next())
   {
      out.println(rs.getString("name") + "<br>");
   }
 
}
catch(Exception e)
{
   out.print(e);
}
finally // 리소스 반환
{
   if(rs != null) rs.close(); rs = null;
   if(stmt != null) stmt.close(); stmt = null;
   if(conn != null) conn.close(); conn = null;
}
%>

Tip

Troubleshooting

Ref

/volume1/web/dokuwiki/data/attic/wiki/eclipse/resin.1591232633.txt.gz · 마지막으로 수정됨: 2022/03/10 19:52 (바깥 편집)