I have a java class in that I have written code to get values from an Oracle table and storing them in a hashmap, returning the values in a JSP page.
I am refreshing that page every 3 minutes. For some time pages are running fine, but after some time Connection and Statement closed exception is raised and application is getting close.
Is the problem because of HashMap?
Here is the code i am using
public HashMap status_Data() {
HashMap hashval = new HashMap();
try {
if (con != null) {
} else {
DBCLASS d = new DBCLASS ();
con = d.getConn();
}
st = con.createStatement();
sql = "select * from status order by id";
rs = st.executeQuery(sql);
while (rs.next()) {
hashval.put(rs.getString(2), rs.getString(1) + "//" + rs.getString(2) + "//" + rs.getString(3) + "//" + rs.getString(4) + "//" + rs.getString(5) + "//" + rs.getString(6) + "//" + rs.getString(7) + "//" + rs.getString(8) + "//" + rs.getString(9) + "//" + rs.getString(10) + "//" + rs.getString(11));
}
JDBCCloser.close(st);
JDBCCloser.close(rs);
} catch (Exception e) {
System.out.println("Exception cathc block1 " + e.toString());
} finally {
try {
JDBCCloser.close(st);
JDBCCloser.close(rs);
} catch (Exception e) {
System.out.println("FINALLY Exception " + e.toString());
}
}
return hashval;
}