How to access request in JspTags?
I want to call request.getContextPath()
inside a JSP tag which extends SimpleTagSupport
,开发者_C百科 is there any way to do it?
First get the PageContext
by the inherited SimpleTagSupport#getJspContext()
and then get the HttpServletRequest
by PageContext#getRequest()
.
PageContext pageContext = (PageContext) getJspContext();
HttpServletRequest request = (HttpServletRequest) pageContext.getRequest();
精彩评论