Hi,

I think I'm facing an configuration issue here.
So having the @Singleton and @Startup Bean which is added in application
composer as below:
@Module
    public EjbJar beans() {
        EjbJar ejbJar = new EjbJar("ejb-beans");

        ejbJar.addEnterpriseBean(new SingletonBean(CacheInitBean.class));
....


This guy needs to perform a @PostConstruct actions, and I do not see the
logs out and seems like the PostConstruct is not fired at all

So two questions
1. How to ensure the log4j works for ApplicationComposer's created beans ?
2. Why @Startup seems to be skipped ?

BR,
Gregory

Reply via email to