how session will be expired?

Answers were Sorted based on User's Feedback



how session will be expired?..

Answer / kshama varshney

There are two ways---
1)When we set session time out in WEB.xml then session will
be automatically expire if nothing is happening after given
time period
2)if we are using "session.invalidate" function then after
executing this function session will be expire.

Is This Answer Correct ?    33 Yes 1 No

how session will be expired?..

Answer / laxmi

In addition to what is said above we can use
'session.invalidate' function or else after a predetermined
time the session gets killed automatically.

Is This Answer Correct ?    29 Yes 2 No

how session will be expired?..

Answer / sanjay gajula

THERE IS A ELEMENT NAME CALLED "SESSION-TIMEOUT" IN THE
WEB.XML FILE OF APPLICATION SERVER USING THIS ELEMENT WE
CAN EXPLICITLY SET THE TIME FOR SESSION TO GET EXPIRED

EX;-
<SESSION-CONFIG>
<SESSION-TIMEOUT>30</SESSION-TIMEOUT>
</SESSION-CONFIG>

WE HAVE TO SET THIS IN THE WEB.XML FILE OF APPLICATION
SERVER[TOMCAT]

Is This Answer Correct ?    15 Yes 2 No

how session will be expired?..

Answer / madhuri

There are three ways ...

1)call setMaxInnactiveInterval()

we cal call the above mtd in two ways,i.e Programatically
Declaratively

Declaratively means through WEB.XML,by using session-timeout
we can close the session.

2)using session.Invalidate()

3)logout the session

Is This Answer Correct ?    7 Yes 1 No

how session will be expired?..

Answer / shikha

When User Logout session will be expired automatically

Is This Answer Correct ?    15 Yes 15 No

Post New Answer

More Core Java Interview Questions

How to print a statement without using semicolan in java

6 Answers   HCL, IBM,


What are facelets templates?

0 Answers  


How to perform binary search in java?

0 Answers  


How would you format a date in java? I.e. In the ddmmyyy format?

0 Answers  


what is difference between Interface and abstract class

2 Answers   GCPL,






explain the life cycle of thread?

10 Answers   CTS, NIIT, TCS,


what is the diff between Servletcontext and servletconfig?

5 Answers  


Can we print null in java?

0 Answers  


How can you make a class serializable in java?

0 Answers  


Is 0 an even number?

0 Answers  


What is a values collection view ?

0 Answers  


what is difference between perfom() & excute() ?

2 Answers   IBM,


Categories