Hi,

Using embedded jetty (version 8), trying to make the new programmable Servlet 3 to work. I'm using:


WebAppContext context = new WebAppContext();
server.setHandler(context);

context.setConfigurations(new org.eclipse.jetty.webapp.Configuration[] {new AnnotationConfiguration()});

I have a class implementing "WebApplicationInitializer", but it is not picked up automatically as it should and onStartUp is not called.

Any ideas?