我想在扩展request.getContextPath()
的JSP标记内调用SimpleTagSupport
,有什么办法吗?
最佳答案
首先通过继承的 PageContext
获取 SimpleTagSupport#getJspContext()
,然后通过 HttpServletRequest
获取 PageContext#getRequest()
。
PageContext pageContext = (PageContext) getJspContext();
HttpServletRequest request = (HttpServletRequest) pageContext.getRequest();