Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/spring/13.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java JBoss EAP上的会话复制不工作_Java_Spring_Jsp_Session_Jboss - Fatal编程技术网

Java JBoss EAP上的会话复制不工作

Java JBoss EAP上的会话复制不工作,java,spring,jsp,session,jboss,Java,Spring,Jsp,Session,Jboss,我正在尝试使会话复制正常工作。。。我们有两个节点,我在node1上启动下面的JSP代码,然后看着计数器上升。。然后我关闭节点,我认为计数器仍然有权在节点2上工作。。我们确实移动到了node2,但它会启动一个新会话 下面是JSP代码: <% /* This is an example that shows sessions in use within a JSP. It's the simplest possible demo - a visit counter, but a counte

我正在尝试使会话复制正常工作。。。我们有两个节点,我在node1上启动下面的JSP代码,然后看着计数器上升。。然后我关闭节点,我认为计数器仍然有权在节点2上工作。。我们确实移动到了node2,但它会启动一个新会话

下面是JSP代码:

<% /*
This is an example that shows sessions in use within a JSP.

It's the simplest possible demo - a visit counter, but a
counter for the number of times that the current user has
visited during the current session.
*/

/* Get value, or set to zero if this is a new session */

String val = (String) session.getAttribute("previouses");
if ( val == null ) val = "0";

/* Convert to number, increment, save back into session */
int n = Integer.parseInt(val);
n++;
session.setAttribute("previouses",Integer.toString(n));

/* Also pick up the hosts so that we can echo this in the
reply page (great for testing load balancer and sticky
session algorithms on our training courses! */
String hostipr = request.getRemoteHost();
String hostipl = request.getServerName();

/* ------------------------------------------------- */

%>
<html>
<head>
<title>Sessions using a JSP</title>
</head>
<body>
<h1>Sessions in a JSP</h1>
This example program shows the use of a session within a
Java Server page (JSP). It's the simplest possible example,
counting the number of times that the user has visited in
the current session.<br /><br />
<b>Details from the session</b><br/>
Requested session:<%=request.getRequestedSessionId()%><br/>
Session: <%= session.getId()%><br/>
Generating or back end host: <%= hostipl %><br />
Accessing or front end host: <%= hostipr %><br />


Count: <%= n %><br/>
</body>
</html>

您需要为JBoss提供带有
标记的web.xml,以便为web应用程序启用会话复制。请参阅

我在web.xml中确实有这一点