한참을 찾아 헤메었으나 이런 간단한 방법이..ㅎㅎㅎ
PageContext pageContext = (PageContext) getJspContext();
HttpServletRequest request = (HttpServletRequest) pageContext.getRequest();
HttpSession session = request.getSession();
javax.servlet.jsp.tagext.SimpleTagSupport.getJspContext() 요 심플태그가 반환하는 getJspContext() 는
JspContext 를 상속하고 있네요.
내부적으로 PageContext 객체랍니다.
형변환해서 쓰면 되네요
참고)
The JspContext is described like this:
As we are using SimpleTags always in an environment that is Servlet-based (in JSPs, those are Servlets) you can safely downcast the JspContext to thePageContext object.
'Dev. 웹' 카테고리의 다른 글
[Markdown] 마크다운 사용하기 (0) | 2015.08.07 |
---|---|
Velocity 사용하기 (0) | 2015.04.29 |
오류 해결] IE에서 WrongDocumentError 발생 원인 및 해결 방법 (3) | 2014.10.24 |
JSTL (JSP Standard Tag Library) 시작하기 - 이해 및 실습 (0) | 2014.10.14 |
ajax 사용하기 (문법, 파라미터) (0) | 2013.05.31 |