QueryForObject 의 Null 처리 방법
try {
// 일단 null이 떨어지면
result = (String) this.getJdbcTemplate().queryForObject(strSql, new Object[] { deptCode }, String.class);
} catch (DataAccessException e) {
if (e instanceof IncorrectResultSizeDataAccessException) {
// Exception 의 이유가 queryforobjcet의 리턴값이 없어서 이면
result="";
String errorCode = PrivilegeErrorCode.ERR_DBERROR;
log.fatal(handler.getMessage(errorCode, new String[] { e.getMessage()}), e);
}else{
String errorCode = PrivilegeErrorCode.ERR_DBERROR;
log.fatal(handler.getMessage(errorCode, new String[] { e.getMessage()}), e);
throw new DBErrorException(errorCode, handler.getMessage(errorCode, new String[] { e.getMessage()}));
}
}
현재의 쿼리 strSql이 Null이라고 가정했을때..
catch에서 db Exception 을 잡아서 만약 db에서 가져온 값이 0개 일때 떨어지는 exception 이라면 추후 확인을 위해
로그에 에러 메세지는 뿌려주되 exception을 throw하지 않고 ""(blank)를 return 한다.
'JAVA > Debug' 카테고리의 다른 글
java.lang.IllegalStateException: response already committed (0) | 2014.08.08 |
---|---|
웹로직 구동시 Exception (0) | 2014.08.08 |
ORA-01861: 리터럴이 형식 문자열과 일치하지 않음 (0) | 2014.08.08 |
The processing instruction target matching "[xX][mM][lL]" (0) | 2014.08.08 |
java 1.4 + tomcat 5.5 연동 error (0) | 2014.08.08 |
Oracle, toad 관련 오류 메세지 (0) | 2014.08.08 |
java.lang.ClassCastException: java.math.BigDecimal (0) | 2014.08.08 |
[Java]java.lang.NumberFormatException: For input string: "" (0) | 2014.08.08 |