Error Handling
문제 상황 스프링 부트 재시작 때마다 hibernate에서 특정 datatype의 칼럼이 변경되었다는 쿼리가 나옴 [Hibernate] alter table chat_messages modify column last_message_time datetime(6) [Hibernate] alter table chat_rooms modify column last_message_time datetime(6) [Hibernate] alter table companies modify column created_on datetime(6) [Hibernate] alter table companies modify column modified_on datetime(6) [Hibernate] alter table custom..
문제 상황 spring boot 서버 연결 시 mysql too many connections error 발생 현재 mysql에 연결된 connections이 max_connections보다 많기 때문에 연결되지 않는 문제 발생 default max_connections는 60 해결방법 timeout 파라미터 값 변경 max_connections의 개수를 늘려주는 것은 근본적인 해결방법이 아님. AWS RDS로 mysql을 사용 중이므로 AWS RDS 접속 RDS > 파라미터 그룹 에서 파라미터 그룹 생성 파라미터 그룹 > 수정에서 wait_timeout, interactive_timeout 값 변경 default로는 둘 다 28800초로 설정되어 있음 RDS 재부팅 후 해결 마치면서 code deplo..
프로젝트를 배포 후 테스트 하던 중 정말 이상한 에러가 보이게 된다. 다른 모든 요청에는 잘 응답하던 api가 어떤 특정한 요청에만 CORS 에러를 뱉는 것. POST [https://api.~~~.com::ERR_FAILED](https://api.%7E%7E%7Enet::ERR_FAILED/) 413 Access to XMLHttpRequest at 'https://api.~~' from origin 'https://www.~~' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. django CORS 관련 모든 설정들을 마친 상황이었기에, 심지어 어떤 특..