개발/오류 (12) 썸네일형 리스트형 오류 java.sql.SQLException: Too many connections 해결 Caused by: java.sql.SQLException: Too many connections 해당 오류는 mysql에 연결된 클라이언트의 수가 일정수치 이상인 경우 나타난다. 확인방법 # mysql 접속 > mysql -u 계정 -p > 비밀번호입력 # 현재 최대 동시 접속 가능 커넥션 수 확인 > show variables like 'max_connections'; +-----------------------+-------+ | Variable_name | Value | +-----------------------+-------+ | max_connections | 151 | +-----------------------+-------+ 3 rows in set (0.174 sec) # 현재 커넥션.. Request method 'GET' not supported 오류 Message: org.springframework.web.HttpRequestMethodNotSupportedException: Request method 'GET' not supported 해당 오류는 url요청에 대해서 GET으로 받지 않는다는 오류로 컨트롤러에서 RequestMappin에서 POST형태로 전송받겠다고 명시한 경우 (method = RequestMethod.POST) jsp에서 form전송시에 라고 명시해 주어야한다. The content of elements must consist of well-formed character data or markup. The content of elements must consist of well-formed character data or markup. 해당 오류는 쿼리 사용하는 xml에서 ' There is already a statement named _ in this SqlMap. There is already a statement named _ in this SqlMap. 이유 1. ibatis 아이디 중복2. sqlmap->config-> 사용할 xml파일 정의하는 파일에실수로 두번 정의한경우 이전 1 2 다음