How to avoid Java webstart not cache jar files ?
In development, I want to avoid cache in java webstart. In my lanuch.jnlp, if every time, I change the jar version number , it will force to download new jar, instead of using its cache ?
Thanks.
<jar href="myjar1.jar" main="true" version="031720111507"/>
<jar href="myjar2.jar" version="031720111507"/>
The Java Webstart will send an HTTP HEAD request to the server to get hold of the timestamp of all of the required .jar files. That is, you don’t even need to update the version-numbers for Java Webstart to realize that the cache is outdated.
Quote from here: