+ | <%= rs.getInt("RECRUIT_ID") %> |
+ <%= rs.getString("work_place") %> |
+ <%= rs.getTimestamp("start_day") %> |
+ <%= rs.getInt("salary") %> |
+ <%= rs.getString("RECRUITMENT_STATE") %> |
+ <%= rs.getString("SUPPORT_TEXT") %> |
+ <%= rs.getTimestamp("SUPPORT_CREATED_AT") %> |
+
+<%
+ }
+ } catch (Exception e) {
+ out.println("오류 발생: " + e.getMessage());
+ } finally {
+ if (rs != null) rs.close();
+ if (pstmt != null) pstmt.close();
+ if (conn != null) conn.close();
+ }
+%>
+