[WLS10.0]Session Timeout 설정

    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
    http://e-docs.bea.com/wls/docs100/webapp/weblogic_xml.html#wp1071982

    메타링크 문서 ID :  822307.1

    댓글

    Designed by JB FACTORY