[Weblogic] Session timeout 설정
Weblogic Session timeout 설정 방법은 아래 3가지 방법이 있다.
- Application 설정
- web.xml 설정
- weblogic.xml 설정
우선순위
→ Application 설정 1순위, web.xml 설정 2순위, weblogic.xml 설정 3순위
1. web.xml 설정
- web.xml 파일의 ‘session-timeout’ 파라미터의 default 값은 ‘60’ 입니다. (단위: 분)
- document에서 session-config 부분 session-timeout 확인
Developing Web Applications, Servlets, and JSPs for Oracle WebLogic Server
Read descriptions of the standard Java EE deployment descriptor elements for WebLogic Server.
docs.oracle.com
2. weblogic.xml 설정
- Weblogic.xml 파일의 ‘timeout-secs’ 파라미터의 default 값은 ‘3600’ 입니다. (단위: 초)
- document에서 session-descriptor 부분 timeout-secs 확인
Developing Web Applications, Servlets, and JSPs for Oracle WebLogic Server
This is a complete reference for the elements in the WebLogic Server-specific deployment descriptor weblogic.xml. If your Web application does not contain a weblogic.xml deployment descriptor, WebLogic Server automatically selects the default values of the
docs.oracle.com