How do you remotely update Java applications?

前端 未结 9 1732
予麋鹿
予麋鹿 2021-01-30 17:30

We\'ve got a Java server application that runs on a number of computers, all connected to the Internet, some behind firewalls. We need to remotely update the JAR files and start

9条回答
  •  时光取名叫无心
    2021-01-30 18:07

    The latest version of Java Web Start allows for injecting an application in the local cache without actually invoking the program and it can be marked as "offline". Since the cache is what is used to invoke the program, it will be updated for the next run only. For this to work you will most likely need jars with version numbers in their name (e.g. our-library-2009-06-01.jar).

提交回复
热议问题