[Spring] Closing inbound before receiving peer's close_notify 예외

2021. 10. 11. 17:28오류모음

728x90

원인

  • DB연결시 연결에 대한 SSL 보안이 포함되어야 하는데 포함되지 않아서 실행중 지속적으로 disconnecting됨.

해결

  • sql connection 에서 darasource.url 에 &useSSL=false 라는 옵션을 추가해준다.

    ex) spring.datasource.url=jdbc:mysql://localhost:3306?useSSL=false

728x90