써먹는 웹개발

스마트폰 카카오톡에서 내 오픈채팅방 관리에서 바꿀 것 출처 : https://eatdrinkenjoy.tistory.com/entry/%EC%B9%B4%EC%B9%B4%EC%98%A4%ED%86%A1-%EC%98%A4%ED%94%88%EC%B1%84%ED%95%91-%ED%94%84%EB%A1%9C%ED%95%84%EC%82%AC%EC%A7%84-%EB%B3%80%EA%B2%BD%EB%90%98%EC%A7%80-%EC%95%8A%EC%9D%84%EB%95%8C-%ED%95%B4%EA%B2%B0%ED%95%98%EB%8A%94-%EB%B0%A9%EB%B2%95-%EC%98%A4%ED%94%88%ED%94%84%EB%A1%9C%ED%95%84-%EB%A7%8C%EB%93%A4%EA%B8%B0-%EC%82%A..

에러 - Incorrect table definition; there can be only one auto column and it must be defined as a key. 해결방법 : 해당컬럼을 고유키 추가하면 됩니다. 쿼리문 1 2 3 alter table 테이블명 add constraint CONTENT_TBL_FILE_IDX01F unique (FILE_ID); cs

여러개의 서버에서 접근하기 때문에 다른 서버에서 onMessage를 받기 때문이다. 해결방법은 다른 서버를 다 내려야된다. (ex. java server kill) 접근하는 1개 서버만 냅두고 다 내리면 된다. 단순히 Force Close로 해결 못함
상세 에러메시지 : ERROR [org.springframework.scheduling.quartz.LocalDataSourceJobStore] ClusterManager: Error managing cluster: Failure obtaining db row lock: Lock wait timeout exceeded; try restarting transaction org.quartz.impl.jdbcjobstore.LockException: Failure obtaining db row lock: Lock wait timeout exceeded; try restarting transaction 개발서버 실행중에 로컬 서버 실행했을때 스케쥴러가 꼬이면서 발생한 에러 임시 해결 : 개발서버 정지 후에 로컬..