게시판을 이용해 주셔서 감사합니다.
다음양식에 맞게 입력해주세요.
* 고객시스템명 : WinXp
* GAUCE 버전 : 5.2
* WAS 종류(WebLogic 등등) : Tomcat 6.0
* DB 종류 : MySQL
* 문의 유형(질문/요청/참조) : 질문
* 내용 :
설치를 하였는데.
제대로 설치가 되었는데
확인할수 있는 방법이 있나요?
context.xml 와 web.xml 각 파일에 대해서 아래와 같이 추가를 하였습니다.
그 이후에 어떻게 확인이 가능한지 궁금합니다.
context.xml
<?xml version="1.0" encoding="UTF-8"?>
<Context
debug="5"
reloadable="true"
crossContext="true">
<Resource name="jdbc/MySQL"
auth="Container"
type="javax.sql.DataSource"
driverClassName="com.mysql.jdbc.Driver"
url="jdbc:mysql://localhost:3306/temp"
username="root"
password=""
maxActive="20" maxIdle="10"
maxWait="-1"/>
</Context>
web.xml
<resource-ref>
<res-ref-name>jdbc/MySQL</res-ref-name>
<res-type>javax.sql.DataSource</res-type>
<res-auth>Container</res-auth>
</resource-ref>