| Author |
Thread.sleep not working in a servlet
|
Arka Sharma
Ranch Hand
Joined: Jun 15, 2011
Posts: 102
|
|
Hi,
I have one servlet where I have called Thread.sleep(5000) in order to display the page for 5 seconds after that I have called sendredirect to a jsp page.
But the problem is that the redirect is working fine but the servlet is not being paused for 5 second.Please help.
Regards,
Arka
|
 |
Vijitha Kumara
Bartender
Joined: Mar 24, 2008
Posts: 3670
|
|
|
Note that you can't do both (display a page which essentially sending a response & redirect) at the same time in a servlet.
|
SCJP 5 | SCWCD 5
[How to ask questions] [Twitter]
|
 |
Arka Sharma
Ranch Hand
Joined: Jun 15, 2011
Posts: 102
|
|
How to do it otherwise ? What I want is that the outputp of servlet will be displayed for a while then it will be automatically redirect to some other page
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56168
|
|
|
You'll need to do that with JavaScript on the client, or via an HTML meta tag.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Vijitha Kumara
Bartender
Joined: Mar 24, 2008
Posts: 3670
|
|
|
An example here.
|
 |
 |
|
|
subject: Thread.sleep not working in a servlet
|
|
|