use of org.eclipse.jetty.annotations.AnnotationConfiguration in project jetty.project by eclipse.
the class WSServer method createWebAppContext.
public WebAppContext createWebAppContext() throws MalformedURLException, IOException {
WebAppContext context = new WebAppContext();
context.setContextPath(this.contextPath);
context.setBaseResource(Resource.newResource(this.contextDir));
context.setAttribute("org.eclipse.jetty.websocket.jsr356", Boolean.TRUE);
// @formatter:off
context.setConfigurations(new Configuration[] { new AnnotationConfiguration(), new WebXmlConfiguration(), new WebInfConfiguration(), new PlusConfiguration(), new MetaInfConfiguration(), new FragmentConfiguration(), new EnvConfiguration() });
return context;
}
use of org.eclipse.jetty.annotations.AnnotationConfiguration in project jetty.project by eclipse.
the class WSServer method createWebAppContext.
public WebAppContext createWebAppContext() throws MalformedURLException, IOException {
WebAppContext context = new WebAppContext();
context.setContextPath(this.contextPath);
context.setBaseResource(Resource.newResource(this.contextDir));
context.setAttribute("org.eclipse.jetty.websocket.jsr356", Boolean.TRUE);
// @formatter:off
context.setConfigurations(new Configuration[] { new AnnotationConfiguration(), new WebXmlConfiguration(), new WebInfConfiguration(), new PlusConfiguration(), new MetaInfConfiguration(), new FragmentConfiguration(), new EnvConfiguration() });
return context;
}
Aggregations