in showcase/src/main/java/org/apache/peeco/showcase/Bootstrapper.java [29:39]
public static void main(String[] args) throws Exception
{
try (final SeContainer container = SeContainerInitializer.newInstance()
.addProperty(DefiningClassService.class.getName(), ClassLoaderProxyService.LoadFirst.class.getName())
.addProperty("org.apache.webbeans.proxy.useStaticNames", "true")
.initialize())
{
HelloWorldHandler handler = container.select(HelloWorldHandler.class).get();
System.out.println(handler);
}
}