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.
在我使用 Java servlet 构建的应用程序中,我必须能够保存一个对象列表,其中包含有关向 servlet 发送 http 请求的某些终端(手机)的信息。我首先想到的是使用我将只创建一次的静态 Vector,这是第一次有人调用 servlet。问题是,我总是发现自己处于 Vector 对象只包含一个元素的情况,即调用 servlet 的最后一个终端。问题是,我什至不知道这是否是这样做的方法,或者是否有另一种方法。你能做点光吗?
谢谢!
使用Servlet 上下文
ServletContext context = request.getSession().getServletContext(); context.setAttribute("list", listOfval);