1: …… 2: private final String ACCOUNT_ID = "account"; 3: 4: public void setupCookies(ServletRequest r, HttpServletResponse response) { 5: String acctID = r.getParameter("accountID"); 6: // 보안속성 설정되지 않은 쿠키 7: Cookie c = new Cookie(ACCOUNT_ID, acctID); 8: response.addCookie(c); 9: }