How to call a Java method while deploying a WAR
-
Please clarify what you mean by "while deploying"? Do you want some code to run as soon as your webapp is launched? – Joachim Sauer May 16 '11 at 10:40
-
a java method from a class within the WAR file being deployed? why? – MarcoS May 16 '11 at 10:40
-
Do you want to call some method on server startup? – Harry Joy May 16 '11 at 10:41
-
Yes, I want some code to run as soon as my web app is launched – William May 16 '11 at 10:47
-
@William: then the answers you got provides good options. Just try them. – Harry Joy May 16 '11 at 10:52
4 Answers
It's not clear what you mean by "deploy". Is that the moment when the WAR file arrives on the app server? Maybe you gin something up with Ant. Is that when the app starts up? Maybe you can do it with a ServletContextListener.
There's no mechanism for doing so built into any Java EE app server I know of, so you're out of luck if Ant isn't suitable. You need something that does the deploying to do it for you.
What's your purpose for doing so? What does this method do?

- 305,152
- 44
- 369
- 561
-
-
I mean when the WAR file arrives on the app server. This method saves some configuration data in the database, and I want this to happen when I deploy the WAR on the server. I don't want to do it with ant, because it shouldn't happen while building. – William May 16 '11 at 10:45
-
1
-
See my update. And there's no reason for a down vote here, unless you think that the only appropriate response is "not a real question." I think clarification isn't that far away. – duffymo May 16 '11 at 10:51
-
Multiple solutions are available to you:
- A ServletContextListener can be used to listen to startup events and execute appropriate actions.
- The same thing can be done using a Servlet, with the
load-on-startup
attribute. You don't have to map your servlet to aservlet-path
and can use it only for startup actions. - If you are using Java EE 6, you can use an EJB anotated with
@Startup
, which instanciate the service during startup. A@PostConstruct
annotation declares a method to execute after instantiation. Note this works only with EJB singletons.

- 20,555
- 2
- 63
- 64
If you want to put this functionality in you web app then right place is ServletContextListener
Implementations of the ServletContextListener interface receive notifications about changes to the servlet context of the Web application of which they are part. The following methods are defined in the ServletContextListener :
public void contextInitialized(ServletContextEvent sce)
public void contextDestroyed(ServletContextEvent sce)
The contextInitialized() method is invoked when the Web application is ready for service and the contextDestroyed() method is called when it is about to shut down. The following code shows how we can use these methods to log the application events:
public void contextInitialized(ServletContextEvent e) {
e.getServletContext().log("Context initialized");
}
public void contextDestroyed(ServletContextEvent e) {
e.getServletContext().log("Context destroyed");
}
see example, or you can extend you container/server to monitor, as same as monitor tools.