0

How to call a Java method while deploying a WAR

ThinkingStiff
  • 64,767
  • 30
  • 146
  • 239
William
  • 23
  • 1
  • 3

4 Answers4

4

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?

duffymo
  • 305,152
  • 44
  • 369
  • 561
  • It's not clear == not a real question – Shakti Singh May 16 '11 at 10:40
  • 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
    I don't see any reason of down vote here. +1 – jmj May 16 '11 at 10:47
  • 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
  • I didn't give you a down vote, I can't even vote :P – William May 16 '11 at 10:53
4

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 a servlet-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.
Vivien Barousse
  • 20,555
  • 2
  • 63
  • 64
3

You can use ServletContextListener

jmj
  • 237,923
  • 42
  • 401
  • 438
1

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.

peterh
  • 11,875
  • 18
  • 85
  • 108
Imran
  • 2,906
  • 1
  • 19
  • 20