Java Mailing List Archive

http://www.junlu.com/

Google
Google
Mailing List
Home
Forum Home
JBoss - Java Application Server
Tomcat - JSP/Servlet container
Struts - A MVC web framework
iText - An open source PDF Java Library
JDOM - JDOM XML Parser
JSP - A mailing list about Java Server Pages specification and reference
J2EE - A mailing list for Java(tm) 2 Platform, Enterprise Edition
J2EE Pattern - An interest list for Sun Java Center J2EE Pattern Catalog
Servlet - A mailing list for discussion about Sun Microsystem's Java Servlet API Technology
Struts & Hibernate
Subjects
JSP editor plugin for eclipse ?
org apache jasper JasperException: Unable to compile class for JSP
Tomcat: Connection reset by peer: socket write error
Cannot retrieve definition for form bean null
Struts Tiles Tutorial (free Struts training)
Where do I download Tomcat 4 0 6?
Data Access Object (DAO) pattern, example DAO 's
Where to download Tomcat v 4 1 24 from?
Tomcat 5 0 16 Requested resource not available
Subject: Servlet : Session invalidate
Oracle Connection Pooling in 3 2 2
Servlet action is currently unavailable
Tomcat/Struts Unicode Encoding/Decoding problems
Subject: Running a Simple JMS Example
Tomcat and webapplication specific java library path
Mapping in workers2 properties
org apache jasper JasperException
problem with html:text bean throwing exception
Cannot find message resources under key org apache struts action
   MESSAGE
Cannot find message resources under key org apache struts action MESSAGE
invalid direct reference problem with solution
Tool for jsp debug Try Sysdeo Eclipse Plugin
Tomcat 5 Cannot load JDBC driver class 'null ' SQL state: null
weblogic ejbc
java properties file
Jboss 3 2 3 Coyote Can 't re
Tomcat 5, Apache2 and mod jk2 integration problem
JBoss example problem new to J2EE
Value attribute of <html:checkbox
url string for connecting jboss to oracle
javax servlet ServletException: BeanUtils populate
5 0 18: Windows XP Pro vs Windows 2000
HTTP Status 404 The requested resource is not available
 
Write a thread to check database in web application

Write a thread to check database in web application

2007-11-05       - By Frank W. Zammetti

 Back
Reply:     1     2     3     4     5     6     7     8     9     10     >>  

On Mon, November 5, 2007 10:40 am, Ashish Kulkarni wrote:
> Hi
> I have to write a thread in web application which will check some values
> in
> database, and then perform some function depending on the values.
>
> There wont be any user input and this thread should be called after like
> 10
> minutes, also i want to have a jsp page from where i can maintain this
> thread, like stop, change the time it should run etc.
>
> Are there any specific J2EE api i can use, or should i just use a time
> thread, and store the handle to this thread in servlet context so i can
> access and modify it..

Spawning threads in a servlet container is generally considered Bad
Voodoo(tm).  If memory serves, it's even outlawed by the servlet spec.

That being said, we've all done it, we'll all probably do it again, so
mheh with the recommendations :)

*That* being said, the key thing is to be extra careful doing it.  Make
sure the thread code is as bullet-proof as possible, most especially when
it comes to resource usage.  The reason spawning such threads is a bad
idea in the first place is because they are not under control of the
container and cannot be managed, nor can the resources it uses.
Therefore, you'll need to do that yourself and be sure you play nice
within the container.

Also, be sure to mark it a daemon thread, otherwise you'll find it can and
will hold up shutdown of the container.  Bumping its priority as low as
possible is probably also a good idea.

Or you can do as Chris said and use Quartz, which will deal with most of
these concerns for you.  I say most because you can still write bad Quartz
jobs that bork things as badly as if you didn't use Quartz at all, but
it'll help a little bit.

> Ashish

Frank

--
Frank W. Zammetti
Founder and Chief Software Architect
Omnytex Technologies
http://www.omnytex.com
AIM/Yahoo: fzammetti
MSN: fzammetti@(protected)
Author of "Practical Ajax Projects With Java Technology"
(2006, Apress, ISBN 1-59059-695-1)
and "JavaScript, DOM Scripting and Ajax Projects"
(2007, Apress, ISBN 1-59059-816-4)
Java Web Parts - http://javawebparts.sourceforge.net
Supplying the wheel, so you don't have to reinvent it!


-- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ---- ------
To unsubscribe, e-mail: user-unsubscribe@(protected)
For additional commands, e-mail: user-help@(protected)


©2008 junlu.com - Jax Systems, LLC, U.S.A.