routes.put("startsWith:/alertRecipients", new AlertRecipientsHandler());
routes.put("startsWith:/cachedScript", new CachedScriptHandler(webappDir));
routes.put("equals:/", new CachedIndexHandler(webappDir, cacheSeconds));
routes.put("equals:/index.html", new CachedIndexHandler(webappDir, cacheSeconds));
routerHandler = new RouterHandler(routes, false,
new CacheableFileServerHandler(
webappDir,
IntegerParser.parseIntegerFromString(System.getProperty("org.eurekaj.indexCacheSeconds"), 0)
));
}