Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Java standalone application in n systems without manual installation? [closed]

I've done a java application for a hospital. The application is an ERP software. The application is to be installed in around n systems. But installing the same application in all these systems is a bit difficult and it requires a lot of time.

Even if that has been done, in the future, if the application requires even a little modification, then again the modified application should be replaced in all those systems in the hospital. I'm using mysql as my database, which i've placed within the main hospital server from where all other systems access it through the network.

Through RMI method we can access it somehow, but RMI is a bit too slow.

Can anyone tell me some solutions or suggestion to achieve a solution for this problem?

In the case of java web application we can deploy the application war file within a main server and all the systems within a LAN or any other network can get the application through the browser. Is there any similar solution in the case for my Desktop Java Swing application which is a exe, jar based app.

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

Thanks in advance.

like image 900
Nidhish Krishnan Avatar asked Nov 21 '12 07:11

Nidhish Krishnan


People also ask

What do I need to do after installing Java?

After installing Java, you may need to restart your browser in order to enable Java in your browser. * Oracle Java (Version 7 and later versions) requires an Intel-based Mac running Mac OS X 10.7.3 (Lion) or later and administrator privileges for installation. » More information After installing Java, you will need to enable Java in your browser.

What platforms can I install Java on?

Platform (s): Windows 2008 Server, Windows 7, Windows 8, Windows XP, Windows Server 2012, Windows Vista, Windows 10 Note: Installing Java requires that you can gain administrator access to Windows on your computer. It is recommended, before you proceed with online installation you may want to disable your Internet firewall.

Do you need a browser to run a standalone application?

They need no browser to run, but often demand a device to be installed on. However, there are also portable standalone applications created for some platforms (like Windows) that can run just by double-clicking a single file, with no installation. Standalone applications are not bound to any specific platform.

Why can't I install Java on my computer?

If the firewall is not configured appropriately it may stall the download/install operation of Java under certain conditions. Refer to your specific Internet firewall manual for instructions on how to disable your Internet Firewall. To run the installer, click Run. To save the file for later installation, click Save.


1 Answers

Java Web Start is the best solution. http://docs.oracle.com/javase/tutorial/deployment/webstart/index.html

like image 183
Akhil K Nambiar Avatar answered Oct 13 '22 08:10

Akhil K Nambiar