javax.net.ssl.SSLException
MESSAGE: closing inbound before receiving peer’s close_notify
application에서 db에 접속할 때, 위와 같은 에러 메세지가 나온다면 ssl 기능을 꺼서 접속할 수 있다.jdbc:mysql://localhost:3306
에 useSSL=false
을 붙여서 접속해보면 에러 없이 접속할 수 있다.
jdbc:mysql://localhost:3306?useSSL=false