방법은 checked exception 때문에 흐름이나 자원을 정리하는 데 실패할 수 있습니다
리소스 라이브러리: findbugs 키워드: OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE
This method may fail to clean up (close, dispose of) a stream, database object, or other resource requiring an explicit cleanup operation.In general, if a method opens a stream or other resource, the method should use a try/finally block to ensure that the stream or resource is cleaned up before the method returns.
This bug pattern is essentially the same as the OS_OPEN_STREAM and ODR_OPEN_DATABASE_RESOURCE bug patterns, but is based on a different (and hopefully better) static analysis technique. See Weimer and Necula, Finding and Preventing Run-Time Error Handling Mistakes, for a description of the analysis technique. .
문제는 다음과 같습니다.
불량 실천 - 방법은 데이터베이스 자원을 닫을 때 실패할 수 있습니다
The method creates a database resource (such as a database connection or row set), does not assign it to any fields, pass it to other methods, or return it, and does not appear to close the object on all paths out of the method. Failure to close database resources on all paths out of a method may result in poor performance, and could cause the application to have problems communicating with the database.
리소스 라이브러리: findbugs 키워드: ODR_OPEN_DATABASE_RESOURCE
해결 방법:
/**
*
* @param con
* @param ps
* @param rs
*/
public static void closeResources (Connection con, PreparedStatement ps,ResultSet rs){
try {
if (rs != null) {
rs.close();
}
} catch (SQLException e) {
LOG.error(" ResultSet ", e);
} finally {
try {
if (ps != null){
ps.close();
}
} catch (SQLException e) {
LOG.error(" PreparedStatement ", e);
} finally {
if (con != null) {
try {
con.close();
} catch (SQLException e) {
LOG.error(" Connection ", e);
}
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
방법은 checked exception 때문에 흐름이나 자원을 정리하는 데 실패할 수 있습니다방법은 checked exception 때문에 흐름이나 자원을 정리하는 데 실패할 수 있습니다 리소스 라이브러리: findbugs 키워드: OBL_UNSATISFIED_OBLIGATION_EXCEPTION_EDGE ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.