이번에는 Tomcat 5.5 를 기준으로 한다.
인터넷 검색 해보면 각양 각색으로 설명이 틀린데, 뭐 META-INF 에 context.xml 을 작성해라, server.xml 만 작성하면 된다는 등등.. 그런데 왜 난 잘 안되는걸까..
server.xml 설정
<GlobalNamingResources> ... </GlobalNamingResources> 내 이건, <Host> 내의 <Context>... </Context> 이건 관계 없이 아래와 같이 설정한다
[Derby]
<Resource description="Test database connection" name="jdbc/testDs"
auth="Container" type="javax.sql.DataSource" maxActive="100" maxIdle="30"
maxWait="10000" username="userid" password="password" driverClassName="org.apache.derby.jdbc.ClientDriver"
url="jdbc:derby://localhost:1527/C:/MyDevTool/bin/db-derby-10.4.2.0/officedb" />
[MySQL]
<Resource description="Test database connection" name="testDs2"
auth="Container" type="javax.sql.DataSource" maxActive="100" maxIdle="30"
maxWait="10000" username="userid" password="password" driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/my_db?autoReconnect=true" />
web.xml 설정
server.xml 만 설정해서 되는건 아니고, web.xml 도 설정 해줘야 하는데, 이놈때문에 좀 해멨다.
web.xml 의 가장 마지막 정도에 아래와 같이 정의해줘야 한다.
[Derby]
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/testDs</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
[MySQL]
<resource-ref>
<description>DB Connection</description>
<res-ref-name>jdbc/testDs</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>
이렇게 server.xml / web.xml 두가지를 해줘야 정상 작동 한다.
testDs 로만 설정 해줘도 잘 동작 한다.
'Software Development > Middleware' 카테고리의 다른 글
WebLogic 의 ClassLoader 메커니즘 (0) | 2010.01.28 |
---|---|
WebLogic 에서 서로 다른 Context 간 Session 공유 (0) | 2010.01.14 |
Jeus 기본 포트 정의 참고 (0) | 2009.11.15 |
apache 에 php 모듈 설치하기 (0) | 2009.10.15 |
자바스크립트 파일 (JS) 등이, UTF-8 로 안넘어오고, EUC-KR 로 넘어오는 경우 해결방법 (0) | 2009.08.06 |