[WLS10.0]Session Timeout 설정
- Middleware/WebLogic
- 2009. 6. 12.
WLS Session time out 설정하는 방법은
이전 8버전은 콘솔에서 변경이 가능하였으나
10버전으로 올라오면서 DEPLOYMENT DESCRIPTOR(DD)를 변경하시면 가능합니다.
Application위치에 Web.xml or WebLogic.xml DD file을 수정하시면 됩니다.
===============web.xml==================
<session-config>
<session-timeout>60</session-timeout>
</session-config>
(Web.xml에서는 단위가 분입니다)
===============weblogic.xml===================
<session-descriptor>
<timeout-secs>3600</timeout-secs>
</session-descriptor>
두 개 DD File 중 하나의 파일만 수정하시면 됩니다.
두 개 DD file 모두 변경 하셨다면 우선순위는 web.xml 입니다
참고 문서:
http://e-docs.bea.com/wls/docs100/webapp/sessions.html#wp100659
'Middleware > WebLogic' 카테고리의 다른 글
[WLS10.0] Auto-Deploying, Redeploying, Undeploying Exploded Archives (0) | 2009.08.06 |
---|---|
[WLS10.0] Auto-Deploy (0) | 2009.06.15 |
[Oracle install] GUI로 설치하기 위한 설정 (0) | 2009.05.12 |
[WLS10.0]Change to production mode (1) | 2009.05.08 |
[AIX]Weblogic 시작시 발생하는 Error (0) | 2009.05.07 |