본문 바로가기

프로그래밍

Throwable while attempting to get a new connection null 에러

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>