I need to invoke a Servlet on application startup since it contains some application initialization logic.

I know I can set load-on-startup configuration, but this will only invoke Servlet’s init method. I need to invoke a doGet method and pass some Url parameters to it. Servlet doGet method expects ServletRequest and ServletResponse objects.

Also, since this is clustered application, I need to know exactly what node I am accessing (since one option is just to open a socket and invoke a Servlet).

What is the best option to perform this?

EDIT: As a clarification, Servlet already exist and can not be modified. Until now, someone would manually invoke the Servlet from the browser. I need to automatize this.

link|improve this question

Since this appears not to be your own code ("I can't fix it"), I strongly recommend to report this huge flaw to the developer/maintainer of the servlet in question. – BalusC Jun 7 '10 at 22:00
feedback

3 Answers

up vote 2 down vote accepted

The best option is to refactor whatever logic you have in the doGet method into a separate method that can be invoked both from init and doGet.

If you really can't refactor the logic (which really is the only good option), you can use some mock library. Google says Spring's mock objects are popular.

Having a usable implementation of HttpServletRequest and HttpServletResponse, make a servlet loaded with load-on-startup, and from its init method, locate the relevant servlet from the current ServletContext, and invoke doGet with the appropriate request and response objects. (Yes, it's a pretty bad kludge, but you'll have to do something like this.)

Edit: If you don't want to hack the WAR file, maybe you should check if your servlet container has the possibility to run some kind of hooks after you re/deploy a web app.

link|improve this answer
1  
+1: Never mix application logic with startup logic. A) first call of your app could take forever (which is somewhat irrelevant if you're using Google App Engine). B) It's a horrible kludge. Put your init stuff in Servlet::init() – Chris Kaminski Jun 7 '10 at 21:36
Unfortunately, this is not the option in my case. – Dan Jun 7 '10 at 21:37
@Dan, see my updated answer. – gustafc Jun 7 '10 at 21:56
I am not sure how mock objects come into play here? – Dan Jun 7 '10 at 22:04
Updated with clarification. – gustafc Jun 7 '10 at 22:10
show 5 more comments
feedback

Normally, bootstrup initialization / shutdown cleanup is achieved with ServletContextListener - did you consider this option?

Alternatively, as an ugly hack, you can implement a servlet superclass with the initializtion logics, that will be called just once.

link|improve this answer
what do you mean by "you can implement a servlet superclass with the initializtion logics, that will be called just once."? – Dan Jun 7 '10 at 22:16
1  
This approach is used in lots of web frameworks (e.g., Jersey). All the servlets are inherited from the super-servlet, that contains generic logics and bootstrupping functionality (which is invoked just once in a lazy-loading manner, when any child-servlet is called). – Vasil Remeniuk Jun 7 '10 at 22:49
feedback

This is in one word terrible, but you could use java.net.URL/java.net.URLConnection for this.

new URL("http://localhost/yourservlet").openStream();
link|improve this answer
how do I get the servlet URL without configuring it? – Dan Jun 8 '10 at 13:35
By parsing web.xml. – BalusC Jun 8 '10 at 13:44
feedback

Your Answer

 
or
required, but never shown

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