톰캣 설정
context-1.xml
<Context crossContext="true" .... 생략
context-2.xml
<Context crossContext="true" .... 생략
테스트
context-1.jsp
context-2.jsp
출처 : http://jee-bpel-soa.blogspot.com/2009/06/session-sharing-in-apache-tomcat.html
context-1.xml
<Context crossContext="true" .... 생략
context-2.xml
<Context crossContext="true" .... 생략
테스트
context-1.jsp
<%
ServletContext ctx = application.getContext("/context-1");
Integer counter = (Integer)ctx.getAttribute("counter");
if (counter == null) {
counter = 0;
}
counter++;
request.setAttribute("counter", counter);
ctx.setAttribute("counter", counter);
%>
<h1>Context-1</h1>
<h1>현재 카운터는 ${counter}입니다.</h1>
context-2.jsp
<%
ServletContext ctx = application.getContext("/context-1");
Integer counter = (Integer)ctx.getAttribute("counter");
if (counter == null) {
counter = 0;
}
counter++;
request.setAttribute("counter", counter);
ctx.setAttribute("counter", counter);
%>
<h1>Context-1</h1>
<h1>현재 카운터는 ${counter}입니다.</h1>
출처 : http://jee-bpel-soa.blogspot.com/2009/06/session-sharing-in-apache-tomcat.html
'자바 > J2EE' 카테고리의 다른 글
HTTP 부하 테스트 툴 openwebload (0) | 2012.05.17 |
---|---|
Charset, Encoding 이해하기 (링크) (0) | 2011.11.09 |
Sitemesh 2.4.1 + Weblogic 9.2 삽질기 (0) | 2010.02.05 |
Tomcat -> Weblogic 전환 시 고려사항 (0) | 2009.01.19 |
브라우져 쿠키 제한(Browser cookie restrictions) (0) | 2008.07.17 |