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,第二个是从第一个 servlet 调用的。我在第一个 servlet 中创建 http 会话并为该会话对象设置一些属性。如何在第二个 servlet 中获取这些属性的值?
提前致谢。
Object value = request.getSession().getAttribute("nameOfTheAttributeUsedInTheFirstServlet");
如果两个 servlet 在同一个 webapp 中,它们共享相同的会话上下文,并且两个 servlet 的会话相同。当然,请记住会话对特定用户来说是紧密的。