Run code during startup of EAR deployment, not in WAR

822 Views Asked by At

I need some tasks performed on deployment/redeployment of a package (EAR/JAR/WAR) into Wildfly. Is there any standard way how to run some code on deployment?

I have found that in the case of WAR deployment it is possible to create a servlet that will implement ServletContextListener and hook the required task on it, however I would need a more general solution that is not dependent just on WAR.

Thanks for any help.

1

There are 1 best solutions below

0
On BEST ANSWER

I think @Startup and @PostConstruct is the way to go for you.

A method annotated with @PostConstruct is executed as soon as in instance of the containing class is created. To ensure your class is created as soon as the app is deployed, Annotate the class with @Startup (and maybe @ApplicationSoped or @Singleton).