개발일지/오류문제해결

javax.net.ssl.SSLException: closing inbound before receiving peer's close_notify

자코린이 2022. 5. 25. 09:53

spring mvc를 사용해 DB를 연결하여 sql을 사용하려고 하는데 서버를 실행했더니 이런 오류가 나왔습니다.

 

오류의 원인은 DB연결을 할 때 ssh연결이 필요하지만 그 설정을 안 하여 오류가 나온 것입니다.

 

해결방법은 jdbc:log4jdbc:mysql://localhost:3306/DB?&useSSL=false  로 수정합니다.

 

출처 : https://kikikimoong.tistory.com/entry/SpringBoot-Closing-inbound-before-receiving-peers-closenotify-%EC%98%88%EC%99%B8-%EC%97%86%EC%95%A0%EA%B8%B0

 

[SpringBoot] Closing inbound before receiving peer's close_notify 예외 없애기

** BEGIN NESTED EXCEPTION ** javax.net.ssl.SSLException MESSAGE: closing inbound before receiving peer's close_notify STACKTRACE: javax.net.ssl.SSLException: closing inbound before receiving peer's..

kikikimoong.tistory.com