@Before public void setUp() throws Exception { super.setUp(); RestCfg cfg = new RestCfg(new ByteArrayInputStream(String.format( "rest.port=%s\n" + "rest.endpoint.1=%s;%s\n", GRIZZLY_PORT, CONTEXT_PATH, ZKHOSTPORT).getBytes())); rest = new RestMain(cfg); rest.start(); zk = new ZooKeeper(ZKHOSTPORT, 30000, new MyWatcher()); client = Client.create(); znodesr = client.resource(BASEURI).path("znodes/v1"); sessionsr = client.resource(BASEURI).path("sessions/v1/"); }
@Before public void setUp() throws Exception { RestCfg cfg = new RestCfg(new ByteArrayInputStream(String.format( "rest.port=%s\n" + "rest.endpoint.1=%s;%s\n", GRIZZLY_PORT, CONTEXT_PATH, ZKHOSTPORT).getBytes())); rest = new RestMain(cfg); rest.start(); zk = new ZooKeeper(ZKHOSTPORT, 30000, new MyWatcher()); client = Client.create(); znodesr = client.resource(BASEURI).path("znodes/v1"); sessionsr = client.resource(BASEURI).path("sessions/v1/"); }
private static void printEndpoints(RestCfg cfg) { int port = cfg.getPort(); for (Endpoint e : cfg.getEndpoints()) { String context = e.getContext(); if (context.charAt(context.length() - 1) != '/') { context += "/"; } System.out.println(String.format( "Started %s - WADL: http://localhost:%d%sapplication.wadl", context, port, context)); } }
public RestMain(RestCfg cfg) { this.cfg = cfg; }