Reputation: 701
I do not see, my changes of the static files.
In the another resources recommending the following method:
Include to the webdefault.xml
<init-param>
<param-name>useFileMappedBuffer</param-name>
<param-value>true</param-value> <!-- change to false -->
</init-param>
But it not the working. Have any idea?
Jetty version: 8.1.8.v20121106
Upvotes: 2
Views: 1110
Reputation: 49462
The useFileMappedBuffer
init-param is for file locking by the DefaultServlet.
If you can change your static files with an editor and save, with no error, then this configurable has no bearing for your question "I do not see my changes of the static files".
The likely scenarios:
Upvotes: 1