Java standalone application on n systems without manual installation?

I made a Java application for the hospital. The application is an ERP software. The application must be installed on n systems. But installing the same application on all of these systems is a bit difficult and time consuming.

Even if this is done in the future, if the application requires even a slight modification, then the modified application must be replaced in all of these systems in the hospital. I use mysql as my database, which I hosted on the main hospital server, from where all other systems access it through the network.

Through the RMI method, we can somehow access it, but RMI is a bit slower.

Can someone tell me some solutions or suggestions to solve this problem?

In the case of a java web application, we can deploy the application war file on the main server, and all systems on the local network or any other network can receive the application through the browser. Is there a similar solution in the case of my desktop Java Swing application, which is a jar based exe application.

How to get Java Deskop Swing application in 200 systems without manual installation?

Thanks in advance.

+6
source share
2 answers

Using Java Web Start is one way to solve your problem. Try this one to find out Java Web Start.

+3
source

All Articles