본문 바로가기

WAS/Weblogic

[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 확인

https://docs.oracle.com/en/middleware/fusion-middleware/weblogic-server/12.2.1.4/wbapp/web_xml.html#GUID-9A3DD372-446B-419D-892A-B05A44215E62

 

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 확인

https://docs.oracle.com/en/middleware/fusion-middleware/weblogic-server/12.2.1.4/wbapp/weblogic_xml.html#GUID-699B48A7-879D-4DF2-A919-6AAE62A93BEB

 

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

 

반응형