ฉันต้องการวิธีแก้ปัญหาเพื่อหยุดเธรดใน Java อย่างถูกต้อง
ฉันมีIndexProcessor
คลาสที่ใช้ส่วนต่อประสาน 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;
}
}
}
}
และฉันมีServletContextListener
ชั้นเรียนที่เริ่มต้นและหยุดเธรด:
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.");
}
}
}
แต่เมื่อฉันปิด Tomcat ฉันได้รับข้อยกเว้นในคลาส IndexProcessor ของฉัน:
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)
ฉันใช้ JDK 1.6 ดังนั้นคำถามคือ:
ฉันจะหยุดเธรดและไม่โยนข้อยกเว้นใด ๆ ได้อย่างไร
PSฉันไม่ต้องการใช้.stop();
วิธีการเพราะเลิกใช้แล้ว
InterruptedException
สามารถพบได้ที่ibm.com/developerworks/library/j-jtp05236
InterruptedException
ถ้ามันเป็นพฤติกรรมปกติแล้วคุณก็สามารถจับและไม่สนใจ นี่คือสิ่งที่ฉันคิด แต่ฉันก็ยังสงสัยว่าวิธีมาตรฐานคืออะไร