Single java application instance per network

We have deployed a java application which will be run by a job scheduler.

This application might be run on many different server machines of intranet. Now we had a problem that there might be more than one instance of this application running simultaneously on multiple machine of product env, and that's a nightmare and we must to avoid that.

So I would like to know what's the proper way to ensure only one single application instance can be run per network.

链接地址: http://www.djcxy.com/p/51174.html

上一篇: 单实例应用程序无法启动

下一篇: 每个网络一个Java应用程序实例