如何在两个或多个Servlet之间共享variables或对象?

我想知道是否有一些方法可以在两个或多个Servlet之间共享variables或对象,我的意思是一些“标准”的方式。 我想这不是一个好的做法,但是是一个更简单的方法来build立一个原型。

我不知道是否依赖于使用的技术,但我会使用Tomcat 5.5


我想分享一个简单类的对象的vector(只是公共属性,string,整数等)。 我的意图是有一个像数据库中的静态数据,显然它会在Tomcat停止时丢失。 (这只是为了testing)

我认为你在这里寻找的是请求,会话或应用程序数据。

在一个servlet中,你可以将一个对象作为一个属性添加到请求对象,会话对象或者servlet上下文对象中:

protected void doGet(HttpServletRequest request, HttpServletResponse response) { String shared = "shared"; request.setAttribute("sharedId", shared); // add to request request.getSession().setAttribute("sharedId", shared); // add to session this.getServletConfig().getServletContext().setAttribute("sharedId", shared); // add to application context request.getRequestDispatcher("/URLofOtherServlet").forward(request, response); } 

如果将它放在请求对象中,它将可用于转发的servlet直到请求完成:

 request.getAttribute("sharedId"); 

如果你把它放在会话中,它将会被所有的servlet使用,但是这个值将被绑定到用户:

 request.getSession().getAttribute("sharedId"); 

直到会话基于来自用户的不活动而到期。

由您重置:

 request.getSession().invalidate(); 

或者一个servlet从范围中删除它:

 request.getSession().removeAttribute("sharedId"); 

如果你把它放在servlet上下文中,它将在应用程序运行时可用:

 this.getServletConfig().getServletContext().getAttribute("sharedId"); 

直到你删除它:

 this.getServletConfig().getServletContext().removeAttribute("sharedId"); 

把它放在三个不同的范围之一。

请求 – 持续请求的生命

会话 – 持续用户会话的生命

应用程序 – 持续到应用程序closures

您可以通过HttpServletRequestvariables来访问所有这些范围,该variables传递给从HttpServlet类扩展的方法

取决于数据预期用途的范围。

如果数据仅用于每个用户,例如用户login信息,页面访问次数等,请使用会话对象(httpServletRequest.getSession().get / setAttribute(String [,Object]))

如果它是多个用户(总网页命中,工作线程等)相同的数据使用ServletContext属性。 getServletContext()。get / setAttribute(String [,Object])) 这只会在同一个war文件/ web应用程序内工作。 请注意,此数据在重新启动时也不会持续。

另一种select,在上下文之间共享数据…

共享数据之间-的servlet-上的Tomcat

  <Context path="/myApp1" docBase="myApp1" crossContext="true"/> <Context path="/myApp2" docBase="myApp2" crossContext="true"/> 

在myApp1上:

  ServletContext sc = getServletContext(); sc.setAttribute("attribute", "value"); 

在myApp2上:

  ServletContext sc = getServletContext("/myApp1"); String anwser = (String)sc.getAttribute("attribute"); 

难道你不能把对象放在HttpSession中,然后通过每个servlet的属性名来引用它吗?

例如:

 getSession().setAttribute("thing", object); 

然后在另一个servlet中:

 Object obj = getSession.getAttribute("thing"); 

以下是我如何使用Jetty做到这一点。

https://stackoverflow.com/a/46968645/1287091

使用服务器上下文,在embedded式Jetty服务器的启动过程中写入单例,并在服务器的整个生命周期内共享所有的Web应用程序。 假设在上下文中只有一个编写器,也可以用来在webapps之间共享对象/数据,否则你需要注意并发性。