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