私は埋め込まれたJetty 6.1.26インスタンスを持っています。 /shutdown
に送信されたHTTP GETによってシャットダウンします。 だから私はJettyShutdownServlet
を作成しました:Jetty:プログラムで停止すると、「1つのスレッドを停止できませんでした」
@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
resp.setStatus(202, "Shutting down.");
resp.setContentType("text/plain");
ServletOutputStream os = resp.getOutputStream();
os.println("Shutting down.");
os.close();
resp.flushBuffer();
// Stop the server.
try {
log.info("Shutting down the server...");
server.stop();
} catch (Exception ex) {
log.error("Error when stopping Jetty server: "+ex.getMessage(), ex);
}
私がリクエストを送信するときしかし、突堤が停止しない - スレッドがthis.wait()
とライン上org.mortbay.thread.QueuedThreadPool
にぶら下がって保持します。
// We are idle
// wait for a dispatched job
synchronized (this)
{
if (_job==null)
this.wait(getMaxIdleTimeMs());
job=_job;
_job=null;
}
...
2011-01-10 20:14:20,375 INFO org.mortbay.log jetty-6.1.26
2011-01-10 20:14:34,756 INFO org.mortbay.log Started [email protected]:17283
2011-01-10 20:25:40,006 INFO org.jboss.qa.mavenhoe.MavenHoeApp Shutting down the server...
2011-01-10 20:25:40,006 INFO org.mortbay.log Graceful shutdown [email protected]:17283
2011-01-10 20:25:40,006 INFO org.mortbay.log Graceful shutdown [email protected]{/,null}
2011-01-10 20:25:40,006 INFO org.mortbay.log Graceful shutdown [email protected]{/jsp,file:/home/ondra/work/Mavenhoe/trunk/target/classes/org/jboss/qa/mavenhoe/web/jsp}
2011-01-10 20:25:43,007 INFO org.mortbay.log Stopped [email protected]:17283
2011-01-10 20:25:43,009 WARN org.mortbay.log 1 threads could not be stopped
2011-01-10 20:26:43,010 INFO org.mortbay.log Shutdown hook executing
2011-01-10 20:26:43,011 INFO org.mortbay.log Shutdown hook complete
正確に1分間ブロックしてからシャットダウンします。 グレースフルシャットダウンを追加しました。サーブレットからサーバーをシャットダウンできるはずです。ただし、ログから確認できるようには機能しません。私はこのようにそれを解決してきました
:
Server server = new Server(PORT);
server.setGracefulShutdown(3000);
server.setStopAtShutdown(true);
...
server.start();
if(server.getThreadPool() instanceof QueuedThreadPool){
((QueuedThreadPool) server.getThreadPool()).setMaxIdleTimeMs(2000);
}
setMaxIdleTimeMs()
は、スレッドプールがstart()
に作成されbecase、start()
後に呼び出される必要があります。ただし、スレッドはすでに作成されて待機しているため、すべてのスレッドが少なくとも1回は使用された後にのみ適用されます。
私はすべてのスレッドやSystem.exit()
を中断するような何かひどいこと以外は何をすべきか分かりません。
アイデア?良い方法がありますか?
おかげで、 Ondra
私はこの問題について議論しているようだが、http://osdir.com/ml/java.jetty.general/2003-10/msg00074.html - しかし、引き続きこのIMOを処理しなければならない。 –