Throwable while attempting to get a new connection null
위와 같이 에러가 나는 경우가 있다.
위와 같이 에러가 날경우.
커넥션을 못하는건데 즉 db연결못하는것이다.
저런 부분이 보이면 먼저..
xml이나 db 설정되어 있는 부분으로가서 db툴을 이용하여 기록된 설정 내용들로 db의 접속부터 해보자..
그다음 접속이 되면 driver를 확인해보도록 하자..
1. db 설정 내용 확인 아래 부분은 jndi를 이용하였다.
- > 아래의 설정 내용으로 db툴로 db의 접속부터 해보자.
<entry key="jdbc.jndiName">java:motest</entry>
<entry key="jdbc.mysql.driverClassName">com.mysql.jdbc.Driver</entry>
<entry key="jdbc.mysql.url">jdbc:mysql://localhost:8080/motest?autoReconnect=true</entry>
<entry key="jdbc.mysql.username">motest</entry>
<entry key="jdbc.mysql.password">mo1234</entry>
<entry key="jdbc.mysql.maxActive">5</entry>
<entry key="jdbc.mysql.maxIdle">5</entry>
<entry key="jdbc.mysql.minIdle">3</entry>
'프로그래밍' 카테고리의 다른 글
JAVA , JSP import 에러 문법상에 문제없는데, can not resolved 나올때.. (4) | 2012.11.05 |
---|---|
JDK 1.6 설치 및 환경설정 방법 (2) | 2012.11.05 |
org.xml.sax.SAXParseException: Content is not allowed in trailing section 에러 (1) | 2012.08.22 |
이클립스 Workspace Unavailable 팝업창 (0) | 2012.05.24 |
if else문 비교 == 과 equals 의 차이점은 뭘까? (5) | 2012.03.23 |