0
網址在我的JSP頁面index.jsp
我如何獲得包括過濾
<c:import url="/hello.jsp?name=user" />
我有被映射到hello.jsp
過濾器,如何獲取的包括URL在這種情況下/hello.jsp?name=user
。如果我嘗試request.getUrl(),它給了我/index.jsp
。
網址在我的JSP頁面index.jsp
我如何獲得包括過濾
<c:import url="/hello.jsp?name=user" />
我有被映射到hello.jsp
過濾器,如何獲取的包括URL在這種情況下/hello.jsp?name=user
。如果我嘗試request.getUrl(),它給了我/index.jsp
。
可以使用getQueryString()
它已經發來的請求參數把它拿來。只需使用ServletRequest#getParameter()
就可以了。
String name = request.getParameter("name"); // "user"
// ...
getUrl()方法不存在。請更加明確地預示紅鯡魚。 – BalusC