티스토리 뷰
각 엔진별로 설정법과 사용법이 조금씩 틀립니다.
하나씩 정리해서 올리도록 하겠습니다.
* 기본적으로 JNDI 를 이용한 호출이기 때문에 javax.naming.* 를 jsp 페이지에 import 해야 합니다.
1. JRun3, 4 의 경우
- 설정은 admin center 에서 해당 dbms 의 종류와 jndi 이름을 입력한뒤 추가하면 됩니다.
- 설정을 추가한다음 해당 서버컨텐츠를 재시작 합니다.
- jsp 페이지에서 호출방법
InitialContext context = null;
DataSource ds = null;
try {
context = new InitialContext();
ds = (DataSource) context.lookup("mydb");
} catch(Exception e) {
out.println("error : " + e);
}
con = ds.getConnection();
* JIND context 를 얻어오는 부분에 try catch 예외처리를 해야 합니다. 그리고 lookup 에서 dns 명을 적어줍니다.
2. Resin 2.1.x 의 경우
- JDBC용 드라이버를 $RESIN_HOME/lib/ 에 복사한다.
- $RESIN_HOME/conf/resin.conf 에 db pool 용 resource 설정을 추가한다.
예제
<resource-ref>
<res-ref-name>jdbc/test</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<init-param driver-name="com.caucho.jdbc.mysql.Driver"/>
<init-param url="jdbc:mysql_caucho://localhost:3306/test"/>
<init-param user=""/>
<init-param password=""/>
<init-param max-connections="20"/>
<init-param max-idle-time="30"/>
</resource-ref>
- 설정후에는 resin 엔진을 다시 시작해야 설정내용이 적용됩니다.
- jsp 페이지에서 호출방법
Context ic = new InitialContext();
DataSource ds = (DataSource) ic.lookup("java:comp/env/jdbc/test");
con = ds.getConnection();
* res-ref-name 에서 설정한 이름을 java:comp/env/ 다음에 적으면 됩니다.
* 따로 try catch 를 해주지 않아도 됩니다.
3. Tomcat 5.5.x 의 경우 ( 톰캣디 렉토리를 $CALTALIA_HOME 환경변수에 설정)
mysql 을 예제로 하여 설명하겠습니다.
- 먼저 해당 jdbc 드라이버를 tomcat 디렉토리의 $CALTALIA_HOME/common/lib 에 복사한다
- 톰켓의 JDNI서비스를 통해 DataSource를 가져오는 경우라면... tomcat밑에...
common\lib이라는 폴더에 넣어주십시오.... 그렇지 않은 경우에는 그냥 WEB-INF/lib에 넣어서 사용하시면 됩니다. 괜히 여기저기 복잡하게 넣어놓고 쓰지 마시고요...
- $CALTALIA_HOME/conf/server.xml 을 설정한다.
server.xml 파일
설정 위치는 해당 <GlobalNamingResources> </GlobalNamingResources> 사이 이다.
<GlobalNamingResources>
<Environment
name="simpl eVal ue"
type="java.lang.Integer"
value="30"/>
<Resource
auth="Container"
description="User database that can be updated and saved"
name="UserDatabase"
type="org.apache.catalina.UserDatabase"
pathname="conf/tomcat-users.xml"
factory="org.apache.catalina.users.MemoryUserDatabaseFactory"/>
MYSQL ->주석처리
<Resource
name="jdbc/mysql"
type="javax.sql.DataSource"
driverClassName="com.mysql.jdbc.Driver"
password="apmsetup"
maxIdle="20"
maxWait="5000"
username="root"
url="jdbc:mysql://localhost/javanux?useUniCode=true&characterEncoding=euc-kr"
maxActive="10"/>
MSSQL ->주석처리
<Resource
name="jdbc/mssql"
type="javax.sql.DataSource"
password="webuser"
driverClassName="com.microsoft.jdbc.sqlserver.SQLServerDriver"
maxIdle="30"
maxWait="10000"
username="webuser"
url="jdbc:microsoft:sqlserver://10.20.1.11:1433;DatabaseName=DATAGEN"
maxActive="100"/>
</GlobalNamingResources>
해당 context 안에 추가함
<ResourceLink
global="jdbc/mysql"
name="jdbc/mysql"
type="javax.sql.DataSource"/>
- jsp 페이지에서 호출방법
Context ic = new InitialContext();
DataSource ds = (DataSource) ic.lookup("java:comp/env/jdbc/mysql");
con = ds.getConnection();
* mysql 의 경우 context 가 다르면, 각각 설정을 따로 하셔야 합니다.
* data source 의 접근 방식은 다음과 같이 할 수도 있습니다.
Context initContext = new InitialContext();
Context envContext = (Context)initContext.lookup("java:/comp/env");
DataSource ds = (DataSource)envContext.lookup("jdbc/mysql");
* tomcat 에서 JNDI 관련 에러메시지별 대처 방법
- Cannot load JDBC driver class 'com.mysql.jdbc.Driver', cause: com.mysql.jdbc.Driver 또는
Null Pointer Exception '', cause: No suitable driver
==> 해당 jdbc 드라이버(위의경우 mysql 드라이버) 가 없기 때문입니다.
해당 드라이버 파일을 $CATALINA_HOME/common/lib 디렉토리로 복사합니다.
- Name xxxx is not bound in this Context
==> server.xml 과 web.xml 에서 해당 JNID가 설정되지 않은 경우입니다.
server.xml 과 web.xml 에 JNDI resource 를 설정하고 이름을 동일하게 설정하도록 합니다.
* 참고 사이트
- tomcat 4.1
http://jakarta.apache.org/tomcat/tomcat-4.1-doc/jndi-datasource-examples-howto.html
http://okjsp.pe.kr/lecture/lec03/jndijdbc01.html
- resin 2.1.x
- Total
- Today
- Yesterday
- 엑스포다리
- 대둔산
- Don't let me be misunderstood
- 섹스와 남자들의 착각
- 공돌/공순 애인님 관리법
- kde 전환
- 코드 예시
- 수락계곡
- 멀티바이트 와이드 문자열 변경
- Mista Swing
- gettimeofday
- D200
- Java PermGen eclipse 이클립스 메모리 부족
- 랜 연결상태
- Java
- 18-70mm
- spring-boot #java
- ckeditor5 #custom image file insert #uploads
- 나는 아직 살아있는건가
- 대청호
- 날자계산
- 정규식 Regex
- 자바스크립트
- 윈도우 제거된 디바이스 드라이버
- Signed applet
- 놈놈놈
- Java Applet
- 남자는 키
- 시동 안걸릴때 여자들은?
- 2MB 개새끼
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |