Tôi cần một giải pháp để dừng đúng luồng trong Java.
Tôi có IndexProcessor
lớp thực hiện giao diện Runnable:
public class IndexProcessor implements Runnable {
private static final Logger LOGGER = LoggerFactory.getLogger(IndexProcessor.class);
@Override
public void run() {
boolean run = true;
while (run) {
try {
LOGGER.debug("Sleeping...");
Thread.sleep((long) 15000);
LOGGER.debug("Processing");
} catch (InterruptedException e) {
LOGGER.error("Exception", e);
run = false;
}
}
}
}
Và tôi có ServletContextListener
lớp bắt đầu và dừng chuỗi:
public class SearchEngineContextListener implements ServletContextListener {
private static final Logger LOGGER = LoggerFactory.getLogger(SearchEngineContextListener.class);
private Thread thread = null;
@Override
public void contextInitialized(ServletContextEvent event) {
thread = new Thread(new IndexProcessor());
LOGGER.debug("Starting thread: " + thread);
thread.start();
LOGGER.debug("Background process successfully started.");
}
@Override
public void contextDestroyed(ServletContextEvent event) {
LOGGER.debug("Stopping thread: " + thread);
if (thread != null) {
thread.interrupt();
LOGGER.debug("Thread successfully stopped.");
}
}
}
Nhưng khi tôi tắt tomcat, tôi nhận được ngoại lệ trong lớp IndexProcessor của mình:
2012-06-09 17:04:50,671 [Thread-3] ERROR IndexProcessor Exception
java.lang.InterruptedException: sleep interrupted
at java.lang.Thread.sleep(Native Method)
at lt.ccl.searchengine.processor.IndexProcessor.run(IndexProcessor.java:22)
at java.lang.Thread.run(Unknown Source)
Tôi đang sử dụng JDK 1.6. Vì vậy, câu hỏi là:
Làm thế nào tôi có thể dừng chủ đề và không ném bất kỳ ngoại lệ?
PS Tôi không muốn sử dụng .stop();
phương pháp vì nó không được dùng nữa.
InterruptedException
có thể được tìm thấy tại ibm.com/developerworks/l Library / j-jtp05236 .
InterruptedException
. Đây là những gì tôi nghĩ, nhưng tôi cũng tự hỏi làm thế nào tiêu chuẩn là.