我有一个嵌入式jetty项目,它构建一个启动webapp的.jar文件。
public static void main(String[] args){
final Server server = new Server(threadPool);
//Do config/setup code for servlets/database/contexts/connectors/etc
server.start();
server.dumpStdErr();
server.join();
}
因此,虽然通过调用 java -jar MyApp.jar 来启动我们的服务器非常有用,但我还是有办法阻止它。当我想通过我们的构建服务器停止服务器时,这尤其令人讨厌。
当我们使用Jetty服务并部署.war文件时,我们可以这样做:
我目前有两个想法:
我是否缺少一些停止服务器的明显机制?
答案 0 :(得分:4)
服务器端:
Server server = new Server(8080);
HandlerList handlers = new HandlerList();
handlers.setHandlers(new Handler[]
{ someOtherHandler, new ShutdownHandler("secret password", false, true) });
server.setHandler(handlers);
server.start();
客户端(发出关闭)。
public static void attemptShutdown(int port, String shutdownCookie) {
try {
URL url = new URL("http://localhost:" + port + "/shutdown?token=" + shutdownCookie);
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("POST");
connection.getResponseCode();
logger.info("Shutting down " + url + ": " + connection.getResponseMessage());
} catch (SocketException e) {
logger.debug("Not running");
// Okay - the server is not running
} catch (IOException e) {
throw new RuntimeException(e);
}
}