@Override protected void doStop() throws Exception { super.doStop(); if (server != null) { server.close(); } }
@Override protected void doStart() throws Exception { AvroConfiguration configuration = getEndpoint().getConfiguration(); server = new HttpServer(new AvroResponder(this), configuration.getPort()); server.start(); }