el 표현식 가져오기 쿠키

428 단어 cookie
{cookie.name}는 클라이언트에게 jsp로 쿠키를 보내는 것과 같은 쿠키에 대응하는 대상을 얻을 수 있습니다.
Cookie cookie = new Cookie("username", "Username in cookie");
response.addCookie(cookie);

 

이름이 username이고 값이 "Username in cookie"인 쿠키 객체를 만들어 클라이언트에 보냅니다.
그리고 우리는 ${cookie.username}을 사용하여 이 쿠키를 얻을 수 있습니다. ${cookie.username.name}는 쿠키 이름을 얻고 ${cookie.username.value}는 쿠키 값을 얻을 수 있습니다.

좋은 웹페이지 즐겨찾기