我有网址: http ://demo.lendingclub.com/account/summary.action 。当访问这个 url 时,它会首先进入拦截器类中的身份验证拦截器,如果我使用:
String uri = req.getRequestURI();
它会回来/account/summary.action
但是如果我在jsp中使用它:
<%
HttpServletRequest req = ServletActionContext.getRequest();
String uri = req.getRequestURI();
%>
它会返回:/mainapp/pages/account/summary.jsp
为什么它们不同,如何在 JSP 中获取操作 URL?