How to patch a Java program?

杀马特。学长 韩版系。学妹 提交于 2020-01-14 07:49:29

问题


Recently I applied a fix to a Java desktop application. I did this by changing the code in one of my classes, compiled it and sent the new jar to the production environment.

I'm now asked if it is possible to just patch the jar in production by just copying the compiled class that I fixed, or even create a patching program/script that will be able to update just the modified files.

Additional info:

  1. The patch does not have to be applied in run time. Meaning the patch can be done as a separate program or activity. My old program does not need to auto update itself.
  2. Can this be done with web applications (WAR file) too?

The best answer I came up is this, but it's 2 years old. Patching Java software

Is my requirement rare? I have never seen a tutorial to patch a Java application.


回答1:


I'm now asked if it is possible to just patch the jar in production by just copying the compiled class that I fixed, or even create a patching program/script that will be able to update just the modified files.

Yes. It is possible to patch a JAR file using jar -u. It is also possible to patch a WAR file the same way.

But I would NOT recommend it. The JAR or WAR file should be the unit of deployment / management. If you start patching JAR / WAR files on production servers, it is hard to track what is actually being used where. If you are not careful, chaos and confusion will reign.

The only situation where patching is unavoidable is where you have a 3rd-party library or something that you can't build from source, but you need to modify nevertheless. But even in that case it is best to modify the JAR / WAR on your build platform and deploy the modified JAR / WAR. Trying to patch JARs, WARs or deployed webapps on the production platform is a bad idea.


Is my requirement rare?

Yes. There's a better way ...

I have never seen a tutorial to patch a Java application.

Not surprising, given that there's a better way ...




回答2:


You can update the old jar by doing jar uf jarfile classfile(s)

This will replace old class files with same name with new ones, making an auto patcher using that should not be hard




回答3:


For deploying Java desktop apps., the best option is usually to install the app. using Java Web Start. JWS works on Windows, OS X & *nix. It includes auto-update.

Can this be done with web applications (WAR file) too?

No. JWS is for desktop apps. only.




回答4:


Take a look to Getdown — which aims to provide a system for downloading and installing a collection of files on a user's machine and upgrading those files as needed.



来源:https://stackoverflow.com/questions/17560635/how-to-patch-a-java-program

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!