session.setAttibute("memId",id);

HttpSession session = request.getSession();

session.setAttribute("memId",id);


session.getAttribute("memId");


Map session;

session.put("memId",id);

session.get("memId");



'jsp2.0' 카테고리의 다른 글

2014-10-16  (0) 2014.10.16
2014-10-15 인터셉터-파일 업로드  (0) 2014.10.15
2014-10-15 checkbox  (0) 2014.10.15
2014-10-15 인터셉터  (0) 2014.10.15
2014-10-14 인터셉터  (0) 2014.10.14
Posted by 5DMK2]발자국
,

2014-10-15 checkbox

jsp2.0 2014. 10. 15. 10:26

<form action=”checkbox.action”>

    <input type=”checkbox” name=”male” value=”true”/>

    <input type=”hidden” name=”__checkbox_male” />남성

</form>

hidden타입과 _checkbox_name값 넣어 주어야 한다



'jsp2.0' 카테고리의 다른 글

2014-10-15 인터셉터-파일 업로드  (0) 2014.10.15
2014-10-15 인터셉터- servletConfig  (0) 2014.10.15
2014-10-15 인터셉터  (0) 2014.10.15
2014-10-14 인터셉터  (0) 2014.10.14
2014-10-13 Struts2  (0) 2014.10.13
Posted by 5DMK2]발자국
,

2014-10-15 인터셉터

jsp2.0 2014. 10. 15. 09:54

<interceptors>

<interceptor-stack name="aaa">

<interceptor-ref name="prepare">

</interceptor-stack name="aaa">

</interceptors>



'jsp2.0' 카테고리의 다른 글

2014-10-15 인터셉터- servletConfig  (0) 2014.10.15
2014-10-15 checkbox  (0) 2014.10.15
2014-10-14 인터셉터  (0) 2014.10.14
2014-10-13 Struts2  (0) 2014.10.13
2014-10-08  (0) 2014.10.08
Posted by 5DMK2]발자국
,