vote up 1 vote down star
1

Is there a portable way to request a Servlet container to shutdown gracefully, from within a servlet?

By portable I mean a technique that will work on all standard compliant containers (Tomcat, Jetty, Winstone, etc).

Note that this is the opposite of the Servlet.destroy() method, which gets called when the container is taking the servlet down.

flag

1  
There is no portable way, because it's a bad idea. – skaffman Sep 24 at 14:15
Hmm.. So how can I gracefully bring down the container (for upgrades, maintenance) in a portable way? – HRJ Sep 24 at 14:20
1  
@HRJ: To put it nicely, you don't. You use the container's specific shutdown sequence. – R. Bemrose Sep 24 at 14:21
Whoops, I never said why: You don't because your application can't tell whether other applications are running in the servlet container. – R. Bemrose Sep 24 at 15:28
@Bemrose I understand your view. But, I am interested in the "mechanisms" not the "policies". – HRJ Sep 24 at 17:29

2 Answers

vote up 0 vote down check

System.exit();

If you are running with no SecurityManager.

EDIT: Is this graceful? This depends on containers.

On Tomcat, if you call it with 0

  System.exit(0);

It's as graceful as shutdown.sh or Catalina.stop() because the shutdown hook simply calls stop().

link|flag
But is that graceful ? – HRJ Sep 24 at 14:14
On further thought, and in the absence of other solutions, this does seem like a good way. The container could register shutdown hooks with the VM to ensure gracefulness. – HRJ Sep 24 at 14:28
There are no guarantees the server has registered any shutdown hooks, though. That depends on how the server is implemented. It also has concurrency problems, as requests made simultaneously with the shutdown request can be killed when in an inconsistent state. – gustafc Sep 24 at 14:34
See my edit ..................... – ZZ Coder Sep 24 at 15:16
Bad, bad idea. Especially in a cloud. But I don't blame ZZ Coder for this answer. The of course, the SecurityManager was mentioned; I just hope anyone taking this advice as a true answer knows what they are doing. – Vineet Reynolds Sep 24 at 17:39
show 2 more comments
vote up 1 vote down

There's no way defined in the Java EE Servlet Spec that I know of, which there would need to be for it to be portable.

The link it to the servlet API specs, so if there's such a way, it'll be documented there somewhere.

I also agree that it'd be a really bad idea for one servlet to be able to shut down the container!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.