Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/321.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
在Java中安全启动/停止服务实例_Java_Multithreading_Guice - Fatal编程技术网

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

在Java中安全启动/停止服务实例,java,multithreading,guice,Java,Multithreading,Guice,我正在开发一个使用LDAP服务器作为持久存储的多线程应用程序。我创建了以下服务类,用于在需要时启动和停止LDAP服务: public class LdapServiceImpl implements LdapService { public void start() { if (!isRunning()) { //Initialize LDAP connection pool } } public void st

我正在开发一个使用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()”方法,但我不确定如何实现它

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

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


提前感谢。

如果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;
    }
}

djmorton的答案绝对正确,无论是工作任务还是业余项目,你都可以安全地实施它

话虽如此,这里还有另一个解决方案——有些人可能会说它比安全简单的解决方案有一些优势,但我不会这么说。我添加它只是为了展示另一种方法(因为在问题上抛出代码很有趣)


由于您已经开始使用谷歌工具,您可以查看guavas servicemanager resp。服务界面

Typo:
已同步
,但是是的,这应该可以工作。我可能会避免使用
isRunning
方法,直接使用标志,但这应该没问题。@KedarMhaswade谢谢你指出输入错误:)是的,isRunning方法是完全多余的,我只想在原始问题的上下文中显示示例。谢谢你的回答。尽管我选择了“简单”的方法,但很高兴看到一个更复杂的替代方案。
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
      }
   }

}