Tagged Questions
2
votes
1answer
50 views
Java Web Start - How to clear cache (or update the app from user's perspective)
After the JNLP gets downloaded in the browser it becomes cached so it doesn't need to be downloaded again, which is good. However, as a consequence, if I update the JAR that the JNLP uses, users will ...
2
votes
3answers
1k views
How to force a Java Applet to Load out of Cache
My friend and I are developing a little game and we want to share the development stages with our friends. So I made this little page http://people.scs.carleton.ca/~manders8/game.html
Right now it's ...
1
vote
4answers
139 views
Is there a Java library to cache files?
Is there are java library that will cache files to memory and disk? Basically, I would like the library to cache the file to memory. However, if the in memory cache gets larger than a certain ...
1
vote
1answer
356 views
How can I implement CSS Cache Busting with JSF outputStylesheet?
In JSF page templates I use this code to include a CSS resource:
<h:outputStylesheet library="css" name="mystyles.css" />
The usual way to implement CSS cache busting would be to add a ...
1
vote
2answers
176 views
Dynamically generated CSS file is not cached even after setting Cache-Control
I have a CSS file dynamically generated by a Spring controller. I set the Cache-Control response header in the handler method but for some reason my FireFox keeps requesting the CSS file when ...
0
votes
0answers
34 views
How does it work when the web start cached jar contains a class that share the same class name of the updated jar of different name?
I have a client app that is launched through java web start. In the cached jar files, it includes some 3rd party jars. In the upgrade, if some of the 3rd party jar files change to a new name but most ...
0
votes
4answers
281 views
Wicket: proper caching of CSS resources
We just moved from GWT to Wicket 1.4. While very happy in general, we still have a bit of a learning curve for certain things that GWT made simple. One of those things is resource caching.
How can I ...
0
votes
0answers
27 views
Is it okay to sometimes send public caching headers, and sometimes not, for the same url?
I want to publicly cache a lot of my pages, but sometimes cookies will be sent with the pages (session id, etc). I was planning on having a servlet filter to handle the caching, and it would check the ...
0
votes
2answers
330 views
Spring Security userCache invalidation
Using Spring Security I have a DaoAuthenticationProvider described like here:
http://static.springsource.org/spring-security/site/docs/2.0.x/reference/dao-provider.html
I also have caching (also ...
0
votes
2answers
698 views
Enabling browser caching via java
Good day,
I am using CacheFilter to filter a certain path to my server (which outputs an image stream to the response stream). And I've configured it in my web.xml as follows:
<filter>
...