tags:

views:

51

answers:

1

I want to call request.getContextPath() inside a JSP tag which extends SimpleTagSupport, is there any way to do it?

+1  A: 

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();  
BalusC