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.
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).