티스토리 뷰
하나의 was에 여러개의 프로젝트(컨텍스트)가 존재할 경우 일반적으로
서로간 세션의 공유가 되지 않는다.
이때 각 컨텍스트간의 세션이 공유될 수 있는 방법을 알아보자.
1. $catalina_home$/conf/context.xml의 변경
1
2
3
4
5
6
7
8
9
10 |
<!-- The contents of this file will be loaded for each web application -->
<Context>
<!-- Default set of monitored resources -->
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<!-- Uncomment this to disable session persistence across Tomcat restarts -->
<!--
<Manager pathname="" />
--> |
cs |
위의 컨텍스트를 아래와 같이 바꿔준다.
1
2
3
4
5
6
7
8
9
10 |
<!-- The contents of this file will be loaded for each web application -->
<Context crossContext="true">
<!-- Default set of monitored resources -->
<WatchedResource>WEB-INF/web.xml</WatchedResource>
<!-- Uncomment this to disable session persistence across Tomcat restarts -->
<!--
<Manager pathname="" />
--> |
cs |
2. $catalina_home$/conf/server.xml 변경
1 |
<Connector connectionTimeout="20000" port="8080" protocol="HTTP/1.1" redirectPort="8443" emptySessionPath="true"/> |
cs |
<Connector>에 emptySessionPath="true" 속성을 추가한다.
3. 세션 셋
1 |
request.getSession().getServletContext().setAttribute("ssUserId", userId); |
cs |
4. 세션 겟
1 |
String ssUserId = (String) request.getSession().getServletContext().getContext("/").getAttribute("ssUserId"); |
cs |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 설정정보
- apache2.x
- Page
- apllication context
- map loop
- apache tomcat 연동
- 프로세스
- BEAN
- map foreach
- tomcat8.x
- 패턴
- tomcat8.5
- 어플리에키션 컨텍스트
- map iterator
- application
- 디자인패턴
- 스프링
- 빈
- 쓰레드의 이용
- 프로세스의 특징
- 쓰레드
- 메소드
- IoC컨테이너
- java map loop
- 연동
- parretn
- 쓰레드 사용 이유
- 프로세스의 문제점
- 빈팩토리
- map for문
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함