servlets - Session timeout in Java EE -
in ways time session timeout can defined in java ee? looking beyond obvious ways, such setting session timeout in web.xml or httpsession.setmaxinactiveinterval().
i reviewing java ee application, can't find related session timeout definition. web app in weblogic. assuming since there no session timeout definition, session never expire.
as you're looking how session can timed out in weblogic, can add
timeoutsecs
in weblogic.xml
or check point in code session killed session.invalidate()
on logout.
by way, not infinite.
on weblogic, default in web.xml (if no value specified) use timeoutsecs
value in weblogic.xml, defaults 3600 secs i.e. 60 mins
Comments
Post a Comment