From: Ram Koya Date: Tue, 4 Sep 2018 15:42:46 +0000 (+0000) Subject: Merge "Added sonar fixes in StatisticsServlet.java" X-Git-Tag: 1.0.1~15 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=0c1044a2b6a3433d5ca2710f8a425f11966675d7;hp=4a488856e1f47f46785586f8bf3dabbe067f11e7;p=dmaap%2Fdatarouter.git Merge "Added sonar fixes in StatisticsServlet.java" --- diff --git a/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/StatisticsServlet.java b/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/StatisticsServlet.java index e79d4705..33bf3a35 100755 --- a/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/StatisticsServlet.java +++ b/datarouter-prov/src/main/java/org/onap/dmaap/datarouter/provisioning/StatisticsServlet.java @@ -569,40 +569,17 @@ public class StatisticsServlet extends BaseServlet { intlogger.debug(sql); long start = System.currentTimeMillis(); DB db = new DB(); - Connection conn = null; ResultSet rs = null; - Statement stmt = null; - PreparedStatement pst = null; - try { - conn = db.getConnection(); - stmt = conn.createStatement(); - pst = conn.prepareStatement(sql); - rs = pst.executeQuery(); + try ( + Connection conn = db.getConnection()){ + try(PreparedStatement pst = conn.prepareStatement(sql)){ + rs = pst.executeQuery(); + } } catch (SQLException e) { e.printStackTrace(); - } finally { - - try { - if (conn != null) { - db.release(conn); - } - if (stmt != null) { - stmt.close(); - } - if (pst != null) { - pst.close(); - } - if (rs != null) { - rs.close(); - } - - } catch (SQLException sqlException) { - intlogger.error("Exception in getting SQl Records",sqlException); - } - + } intlogger.debug("Time: " + (System.currentTimeMillis() - start) + " ms"); - return rs; } } -} +