Use @Singleton bean and implement @PreDestroy :
@Startup @Singleton public class HookBean { @PreDestroy void wholeApplicationShuttingDown { } }
UPDATE: just noticed the ejb-3.0 tag. @Singleton was added in 3.1. But perhaps you will find it useful.
source share