use of org.jboss.resteasy.plugins.server.servlet.FilterBootstrap in project stdlib by petergeneric.
the class ResteasyDispatcher method init.
@Override
public void init(FilterConfig config) throws ServletException {
GuiceBuilder builder = new GuiceBuilder().withRole(new WebappGuiceRole(config));
this.registry = new GuiceRegistry(builder);
dispatcher = new GuicedResteasy(registry, config, new FilterBootstrap(config), false);
startInitialise();
}
Aggregations