0

I'm just wondering, is it possible to exclude a page (say, the login.jsp) from session timeout in web.xml?

Bozho
  • 588,226
  • 146
  • 1,060
  • 1,140
Wen Ping
  • 345
  • 4
  • 12

1 Answers1

2

No. The session is for everything. But login.jsp does not need a session. It should assume that no user is logged, hence no previous session exists.

Bozho
  • 588,226
  • 146
  • 1,060
  • 1,140