IllegalArgumentException: 메소드의 전달인자 값이 부적절한 경우 발생. -> Illegal(부적절한) Argument(아규먼트) Exception(예외) 참고 링크: http://bufferoverflow.tistory.com/entry/파라미터-parameter-아규먼트-argument
IllegalStateException: 객체의 상태가 메소드 호출에는 부적합한 경우 발생. -> Illegal(부적절한) State(상태) Exception(예외상황) ex> java.lang.IllegalStateException: getOutputStream() has already been called for this response -> 해당 response는 getOutputStream() 메소드를 호출하기 위한 준비가 되어있지 않습니다.
NullPointerException: null 이 금지된 상황에서 전달인자 값이 null인 경우 발생한다. -> Null(null) Pointer(포인터) Exception(예외상황)
IndexOutOfBoundsException: index 값이 범위를 벗어난 경우 발생한다. -> Index(인덱스) OutOfBounds(범위이탈) Exception(예외상황)
ConcurrentModificationException: 금지된 곳에서 객체를 동시에 수정(concurrent modification)하는 것이 감지된 경우 발생한다. -> Concurrent(동시) Modification(수정) Exception(예외상황) 참고 링크 : http://wonsama.tistory.com/194
UnsupportedOperationException: 객체가 메소드를 지원하지 않는 경우 발생한다. -> Unsupported(지원하지 않는) Operation(객체) Exception(예외상황) 참고 링크: http://younghoe.info/482
java+ oracle 때는 select now() from dual;쿼리로 ibatis Test연결실행했는데, mysql에서 test할 땐 실패했다; jsp로 먼저 test... 아래와 같이 수정하였더니 성공! <% if(rs1.next()){ %> <tr> <td><%=rs1.getString(1) %></td> </tr> <% }%> ================================================================================ java.sql.sqlexception:before start of result set |