Skip to content

Instantly share code, notes, and snippets.

@mojavelinux
Created October 20, 2010 03:41
Show Gist options
  • Star 13 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save mojavelinux/635719 to your computer and use it in GitHub Desktop.
Save mojavelinux/635719 to your computer and use it in GitHub Desktop.
A sample CDI extension for eagerly instantiating @ApplicationScoped beans annotated @startup
@ApplicationScoped
@Startup
public class StartupBean
{
@PostConstruct
public void onStartup()
{
System.out.println("Application starting up.");
}
}
public class StartupBeanExtension implements Extension
{
private final Set<Bean<?>> startupBeans = new LinkedHashSet<Bean<?>>();
<X> void processBean(@Observes ProcessBean<X> event)
{
if (event.getAnnotated().isAnnotationPresent(Startup.class) &&
event.getAnnotated().isAnnotationPresent(ApplicationScoped.class))
{
startupBeans.add(event.getBean());
}
}
void afterDeploymentValidation(@Observes AfterDeploymentValidation event, BeanManager manager)
{
for (Bean<?> bean : startupBeans)
{
// the call to toString() is a cheat to force the bean to be initialized
manager.getReference(bean, bean.getBeanClass(), manager.createCreationalContext(bean)).toString();
}
}
}
@itfobos
Copy link

itfobos commented May 22, 2013

Hello,

Do we need to add any files to META-INF/services dirrectory?
Do u have an example of using this approach?

I'm trying to make extension like u and get no success. Using Glassfish 3.1.21

@oloftus
Copy link

oloftus commented Jun 2, 2013

According to http://ovaraksin.blogspot.co.uk/2013/02/eager-cdi-beans.html you do...

"The extensions should be registered in a file META-INF/services/javax.enterprise.inject.spi.Extension. The file has only one line with a fully qualified path to the EagerExtension class, e.g. mydomain.mypackage.EagerExtension."

Though I haven't tried implementing this yet

@odrotbohm
Copy link

Has this ever worked? .toString() just returns as call from Object and there doesn't seem to be a provider agnostic way to enforce the actual instance to be created.

@JalalSordo
Copy link

have anyone ever tested this ?

@cray935
Copy link

cray935 commented Jul 22, 2016

hi, i'm just researching and according to the spec of "ProcessBean" this won't work...
Why the posted solution may not work is that "ProcessBean" is the event right before a bean gets deployed. the call of Object.toString() is because the guy enabled bean discovery mode "all" what lifts all classpath classes up to beans.

EDIT: but you can use the event to gather information about the beans discovered... usually you might be interested in "ManagedBean"s

@sermojohn
Copy link

You can consider using the @initialized qualifier introduced in CDI 1.1 spec, and provided by the Weld implementation.
Here is a demo code: https://gist.github.com/sermojohn/c1044df560dbd86e4b9fae0283c64265

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment