I want to make a Reminder application in Servlets.
When the date and/or time is matched (threads will be required!), a "pop-up window or a web-page should automatically get re-directed!". I have used threads for core java, but never used for Servlets! any help?
can u post ur code using threads ??? plzzzz
Servlets have a life-cycle and are maintained by Web-Container which destroys the Servlet immedaitely after displaying its contents. Hence, it might not be possible to use any Multi-Threaded or Single-Thread applications in Servlets!
Ads