MVC
WebContent View - css - js - jsp (index, header, main, footer) Java Resources (Common, Model, Controller) Common - JdbcTemplate ClassForName("oracle.jdbc.driver.OracleDriver); * jdbc 드라이버를 메모리에 올림 Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:xe", "scott", "TIGER"); * jdbc 드라이버 매니저를 통해 연결 객체 생성 public void close(){} * conn, stmt, pstmt, rs를 닫는 메소드 생성 public void comm..