在Java中安全地启动/停止服务实例

时间:2016-04-28 17:41:44

标签: java multithreading guice

我正在研究一个使用LDAP服务器作为持久存储的多线程应用程序。我创建了以下服务类来在需要时启动和停止LDAP服务:

public class LdapServiceImpl implements LdapService {

    public void start() {
        if (!isRunning()) {
            //Initialize LDAP connection pool
        }
    }

    public void stop() {
        if (isRunning()) {
            //Release LDAP resources
        }
    }

    private boolean isRunning() {
        //What should go in here?
    }

}

我们目前使用Google Guice将服务实现注入单例实例:

public class ServiceModule extends AbstractModule {

    @Override
    protected void configure() {
    }

    @Provides @Singleton
    LdapService providesLdapService() {
        return new LdapServiceImpl();
    }

}

这样我们可以在应用程序启动时设置连接池,对连接执行某些操作,然后在应用程序关闭时释放资源:

public static void main(String[] args) throws Exception {
    Injector injector = Guice.createInjector(new ServiceModule());

    Service ldapService = injector.getInstance(LdapService.class));
    ldapService.start();
    addShutdownHook(ldapService);

    //Use connections

}

private static void addShutdownHook(final LdapService service) {
    Runtime.getRuntime().addShutdownHook(new Thread() {
        @Override
        public void run() {
            service.stop();
        }
    });
}

我面临的问题是我想确保服务只启动/停止一次。出于这个原因,我在服务实现中添加了“isRunning()”方法,但我不确定如何实现它。

考虑到应用程序是多线程的并且我的Service实例是单例,实现“isRunning()”方法的最佳方法是什么?

此外,是否有更好/更清洁的方法来实现这一目标?

提前致谢。

3 个答案:

答案 0 :(得分:2)

如果LdapServiceImpl是一个单例,并且您担心多个线程同时调用start或stop方法,那么您应该能够简单地将synchronized关键字添加到start和stop方法中。此时,您可以使用一个简单的布尔标志来存储当前运行状态,只要访问该状态的所有方法都是同步的,您就应该是安全的。

public class LdapServiceImpl implements LdapService {

    private boolean isRunning = false;

    public synchronized void start() {
        if (!isRunning()) {
            //Initialize LDAP connection pool
            isRunning = true;
        }
    }

    public synchronized void stop() {
        if (isRunning()) {
            //Release LDAP resources
            isRunning = false;
        }
    }

    private boolean isRunning() {
        return isRunning;
    }
}

答案 1 :(得分:1)

djmorton 的答案是绝对正确的,无论是作业分配还是空闲时间项目,您都可以安全地实施。

话虽如此,这是另一种解决方案 - 有些人可能认为它比安全和简单的解决方案有一些优势,但我不会声称这一点。我只是为了展示另一种方法而添加它(因为在问题中抛出代码很有趣)。

public static class LdapServiceImpl implements LdapService {

   private static final int STOPPED = 0;
   private static final int STARTING = 1;
   private static final int STOPPING = 2;
   private static final int STARTED = 3;

   private AtomicInteger serviceState = new AtomicInteger(STOPPED);

   public void start() {
      if (serviceState.compareAndSet(STOPPED, STARTING)) {
         System.out.println("Starting by " + Thread.currentThread().getName());
         // Initialize LDAP resources
         boolean startSuccess = serviceState.compareAndSet(STARTING, STARTED);
         // Handle startSuccess == false, if that somehow happened

      }
   }

   public void stop() {
      if (serviceState.compareAndSet(STARTED, STOPPING)) {
         System.out.println("Stopping by " + Thread.currentThread().getName());
         // Release LDAP resources
         boolean stopSuccess = serviceState.compareAndSet(STOPPING, STOPPED);
         // Handle stopSuccess == false, if that somehow happened
      }
   }

}

答案 2 :(得分:0)