JSP页面无法分辨手动构造的GET URL之间的区别,例如:
<a href="/foo.jsp?bar=baz">Go to the next JSP page</a>,而不是类似的内容:
<form method="get" action="/foo.jsp"><input name="bar" value="baz"></form>
可以通过
getParameter或
getParameterValues
那是你要的吗

JSP页面无法分辨手动构造的GET URL之间的区别,例如:
<a href="/foo.jsp?bar=baz">Go to the next JSP page</a>,而不是类似的内容:
<form method="get" action="/foo.jsp"><input name="bar" value="baz"></form>
可以通过
getParameter或
getParameterValues
那是你要的吗