1️⃣ 사라진 SQLException public void deleteAll() throws SQLException { this.jdbcContext.executeSql("delete from users"); } // SQLException이 사라짐 public void deleteAll() { this.jdbcTemplate.update("delete from users"); } 초난감 예외처리 예외 블랙홀 catch 블록을 써서 잡아낸 후 아무 처리도 하지 않음 try { } catch(SQLException e){ } 시스템의 오류나 이상한 결과의 원인을 찾을 수 없음 화면에 출력한 경우도 예외를 처리한 것이 아님 } catch(SQLException e){ System.out.println(e);..