Search Results

5
votes

How to make Jetty dynamically load “static” pages.

Jetty uses memory-mapped files to buffer static content, which causes the file-locking in Windows. Try setting useFileMappedBuffer for DefaultServlet to false. …
0
votes

How should I configure Jetty 7 pre3 to use oracle JDBC source?

The problem is that addLifeCycle does not take a Resource object; it takes LifeCycle implementations such as WebAppContexts or WebAppDeployers. …