// Index page must be done via resource, otherwise will conflict with DW/JAX-RS Servlet:
environment.addResource(new IndexResource(loadResource("/index.html"), loadResource("/favicon.jpg")));
// Let's first construct handlers we use:
LOG.info("Creating handlers for service endpoints");
ClusterInfoHandler nodeH = constructClusterInfoHandler(_serviceStuff, _cluster);
SyncHandler<K,E> syncH = constructSyncHandler(_serviceStuff, _stores, _cluster);
_storeHandler = constructStoreHandler(_serviceStuff, _stores, _cluster);
LOG.info("Adding service end points");
addServiceEndpoints(_serviceStuff, environment,