什么时候关闭 ScheduledExecutorService?

When to shutdown ScheduledExecutorService?

我有一个需要启动计划执行的单例。这是代码:

public enum Service{
    INSTANCE; 

    private Service() {
        startAutomaticUpdate();
    }

    private void startAutomaticUpdate() {
        try {
            ScheduledExecutorService executor = Executors.newScheduledThreadPool(1);
            executor.scheduleAtFixedRate(new AutomaticUpdate(), 0, 15, TimeUnit.MINUTES);
        } catch (Exception e) {
            LOG.error(e.getMessage() + "Automatic update not working: ");
        }
    }

    //Makes a call to a webservice that updates a static variable. 
    private void getTemplateNames(){...}

    private class AutomaticUpdate implements Runnable {

        public AutomaticUpdate()  {           
        }

        @Override
        public void run(){
            try{
                getTemplateNames();
            }catch(Exception e){
                LOG.error("Error in automatic update: "+e.getMessage());
            }
        }
    }

我不确定何时或是否应该调用执行程序的关闭方法。我使用的是 JEE5,所以我不确定简单地取消部署应用程序是否会自动执行关闭,或者我是否搞砸了很多时间并创建了荒谬数量的线程而不是杀死它们。

-编辑-

我会添加更多信息,以防万一。

整个应用程序是一个使用 Jersey 作为 ServletContainer 的 RESTful 网络应用程序。

你说的是JEE5?为什么要重新发明轮子?

只需使用 @Schedule@Startup

创建一个 EJB
@Singleton
@Startup
public class TaskSingleton {

  @Schedule(second = "0", minute = "*/15", hour = "*")//This mean each 15:00 minutes
  public void getTemplateNames() {
    // YOUR TASK IMPLEMENTATION HERE
  }
}

不,你不是指 JEE5 投诉服务器。 :(

使用 ServletContextListener 实现。我写了一些这样的答案,同样的想法,它适用于这里。