up vote 5 down vote favorite
5
share [g+] share [fb]

I am building Java web applications, and I hate the traditional "code-compile-deploy-test" cycle. I want to type in one tiny change, then see the result INSTANTLY, without having to compile and deploy.

Fortunately, Jetty is great for this. It is a pure-java web server. It comes with a really nice maven plugin which lets you launch Jetty reading directly from your build tree -- no need to package a war file or deploy. It even has a scanInterval setting: put this to a non-zero value and it will watch your java files and various config files for changes and automatically re-deploy a few seconds after you make a change.

There's just one thing keeping me from nirvana. I have javascript and css files in my src/main/webapp directory which just get served up by Jetty. I would like to be able to edit these and have the changes show up when I refresh the page in the browser. Unfortunately, Jetty holds these files open so I can't (on Windows) modify them while it is running.

Does anyone know how to make Jetty let go of these files so I can edit them, then serve up the edited files for subsequent requests?

link|improve this question

feedback

4 Answers

up vote 6 down vote accepted

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

Files locked on Windows (from the Jetty wiki) has instructions.

link|improve this answer
Thanks! that's exactly what I wanted. I would mark this as the "accepted" answer if stackoverflow would allow it (I'm not sure why it won't). – mcherm Oct 9 '08 at 14:11
I tried those instructions, and after a bit of fiddling (mostly figuring out how to specify in my POM that I was using a customized webdefault.xml file) I got it working. Thanks again. – mcherm Oct 9 '08 at 15:20
Cool, glad to hear you got i tworking! – Athena Oct 10 '08 at 2:24
feedback

While one of the answers above is exactly right for configuring jetty by xml, if you want to configure this option in code (for an embedded server) the answer is different and not found on that page.

You'll find a number of suggestions online including

context.getInitParams().put("useFileMappedBuffer", "false");

Or overriding the WebAppContext, or using a fully qualified name for the init parameter. None of these suggestions worked for me (using Jetty 7.2.2). Part of the problem was that the useFileMappedBuffer option needs to be set on the servlet that the WebAppContext is using to serve the static files, rather than on the context.

In the end I did something like this on a straightforward ServletContextHandler

// Startup stuff
final Server server = new Server(port);
ServletContextHandler handler = new ServletContextHandler();
handler.setResourceBase(path);

SessionManager sm = new HashSessionManager();
SessionHandler sh = new SessionHandler(sm);
handler.setSessionHandler(sh);

DefaultServlet defaultServlet = new DefaultServlet();
ServletHolder holder = new ServletHolder(defaultServlet);
holder.setInitParameter("useFileMappedBuffer", "false");
handler.addServlet(holder, "/");

server.setHandler(handler);
server.start();
server.join();
link|improve this answer
Exacly what I am looking for! Do you have a link to a full exemple? – h3xStream May 31 '11 at 2:12
Fraid not, I found it by a mixture of trial and error, and haven't found anyone else explain how to do it. I have a full example that I've created myself (that does jsps, request logging and configures some mimetypes etc), but if you want a little more, I'll add a bit more to the example above. – Adam Jun 3 '11 at 15:49
The new example is perfect. I had something similar. If I can't get it to work, I'll ask a new question. – h3xStream Jun 3 '11 at 17:33
feedback
public class WebServer {
    // i expect the java working directory to be the module's root.
    public static void main(String[] args) throws Exception {
        Server server = new Server(9090);
        server.setHandler(new WebAppContext("src/main/webapp", "/"));
        server.start();
    }
}

Hi folks, I use above code to start jetty, Adam's solution still didn't work for me after I revised my code as below. Problem is html files are still being locked. Any clue?

public static void main(String[] args) throws Exception {
    Server server = new Server(9090);
    final WebAppContext webAppContext = new WebAppContext("src/main/webapp", "/");

    SessionManager sm = new HashSessionManager();
    SessionHandler sh = new SessionHandler(sm);
    webAppContext.setSessionHandler(sh);

    DefaultServlet defaultServlet = new DefaultServlet();
    ServletHolder holder = new ServletHolder(defaultServlet);
    holder.setInitParameter("useFileMappedBuffer", "false");
    webAppContext.addServlet(holder, "*.html");

    server.setHandler(webAppContext);
    server.start();
}
link|improve this answer
feedback

It is probably the browser that is holding on to it.

inside I.E : Tools | Internet Options | Temporary Internet Files > Settings, click the Radio button "Every visit to the page". press OK.

Before you do that, Delete all the temporary internet files.

link|improve this answer
I think he's talking about windows/jetty locking the files so they can't be edited. – Draemon Oct 9 '08 at 2:10
This answer is completely incorrect. I would down-vote, but cannot. – Matt Fisher Oct 11 '10 at 13:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.