How to avoid Java files not related to jar cache?
In development, I want to avoid caching in java webstart. In my lanuch.jnlp, if every time I change the jar version number, will it force me to load a new jar, and not use its cache?
Thank.
<jar href="myjar1.jar" main="true" version="031720111507"/>
<jar href="myjar2.jar" version="031720111507"/>
source
share