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

2

7

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.

Awildaawkward answered 21/11, 2012 at 7:9 Comment(3)
did you check java webstart? docs.oracle.com/javase/tutorial/deployment/webstart/index.htmlSulfapyrazine
The people on ServerFault probably have better advice for you than most of the people reading this here.Lagniappe
I agree with Alexei, Webstart is the intended technology for this.Pu
R
4

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

Roofing answered 21/11, 2012 at 7:14 Comment(2)
See also the Java Web Start tag. Wiki for handy links.Thickknee
Java Web Start seems to be good. but sir Is AJAX-SWING better than Java Web StartAwildaawkward
H
3

Using Java Web Start is one the way to solve your problem. Try this to learn Java Web Start.

Hyperaemia answered 21/11, 2012 at 7:21 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.