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.
当第一个请求到达 servlet 时,我正在使用数据创建 Map,然后将其返回到 JSP 页面,从该 JSP 页面有另一个请求到达 servlet,我希望在第二个请求到来时尽早创建带有数据的 Map,否则我必须再次将数据加载到新地图,
有没有办法做到这一点?,我无法通过 HTTP 请求解析 Map 对象,我正在使用 Java
谢谢
我能想到的方法有以下三种:
request
forward
RequestDispatcher
session
ServletContext