Hi,
in our application we read static resources (i.e. javascript files) from a jar file located in WEB-INF/lib. It happens that the server quits working with too many open files exception. I found out (using lsof), that the jar file is opened several times. And the number increases when I reload a page by the number of javascript files of the page. I tried a couple the following things without positive result:
- URLConnection setDefaultUSeCache(false)
- URLConnection setUSeCache(false)
- context.xml cachingAllowed="false"
Is there something else I could try?