Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您可以将ItemToSetToSession作为参数传递给 servlet:
ItemToSetToSession
<a href = "servletName?item=ItemToSetToSession">ItemToSetToSession</a>
在 servlet 代码中,您可以像这样获取此参数
session.setAttribute("item",(String)request.getParameter("item"));