싱글톤을 적용한 CRUD를 구성할 것이다. 싱글톤 구현을 위한 web.xml 과 context.xml context.xml web.xml ConnectionPool jdbc/oracle javax.sql.DataSource Container Member2DTO package member2; public class Member2DTO { private int idx; private String userid; private String userpw; private String username; private String gender; public int getIdx() { return idx; } public void setIdx(int idx) { this.idx = idx; } public String ..