• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

using util class that create thread in servlet

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is it ok to call a utility class which creates threads to do its job in a servlet's doGet/doPost method? Any input appreciated.
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Should not be a problem. I have done this a couple of times.
 
Ranch Hand
Posts: 232
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
there is no case where a thread has to be created and used in a servlet.
Each servlet request has its "own" dedicated thread. This thread manages the entire cycle(doget/dopost) of a servlet.
Once the doget/dopost/service is complete, the request and response objects will no more be available. So cant use any of the objects which are of request and responce type.
 
Sheriff
Posts: 13411
Firefox Browser VI Editor Redhat
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's not recommended but it's done all the time.
Make sure to use daemon threads.
 
Sripathi Krishnamurthy
Ranch Hand
Posts: 232
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Ben,
Can you please give me instances where there is a requirement to create thread inside a servlet? and also how to create a thread as daemon?

Thanks
 
Ranch Hand
Posts: 580
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How about a situation where you want to kick off a long-running process and you don't want to bog down the user's browser waiting for it (it might even time-out anyway)? In that situation, maybe you're going to email the user when you're finished to let them know that the results are available for review or just that the operation is finished. As for creating daemon threads, it's simple...



The trick is what to do with this daemon thread. One idea might be...



In your servlet code, then, you would do something like...

 
reply
    Bookmark Topic Watch Topic
  • New Topic