Jetty 9.2 のドキュメントResourceHandler
には、サーブレットの代わりに を使用して静的ファイルを提供するための Jetty Embedded の例が示されています。
// Create a basic Jetty server object that will listen on port 8080. Note that if you set this to port 0
// then a randomly available port will be assigned that you can either look in the logs for the port,
// or programmatically obtain it for use in test cases.
Server server = new Server(8080);
// Create the ResourceHandler. It is the object that will actually handle the request for a given file. It is
// a Jetty Handler object so it is suitable for chaining with other handlers as you will see in other examples.
ResourceHandler resource_handler = new ResourceHandler();
// Configure the ResourceHandler. Setting the resource base indicates where the files should be served out of.
// In this example it is the current directory but it can be configured to anything that the jvm has access to.
resource_handler.setDirectoriesListed(true);
resource_handler.setWelcomeFiles(new String[]{ "index.html" });
resource_handler.setResourceBase(".");
// Add the ResourceHandler to the server.
HandlerList handlers = new HandlerList();
handlers.setHandlers(new Handler[] { resource_handler, new DefaultHandler() });
server.setHandler(handlers);
// Start things up! By using the server.join() the server thread will join with the current thread.
// See "http://docs.oracle.com/javase/1.5.0/docs/api/java/lang/Thread.html#join()" for more details.
server.start();
server.join();
Jetty は NIO (メモリ内ファイル マッピング) を使用するため、Windows オペレーティング システム上のファイルをロックします。これは既知の問題であり、サーブレットには多くの回避策があります。
ただし、この例はサーブレットに依存していないため、webapp パラメーター (useFileMappedBuffer、maxCachedFiles) に基づく関連する回答は機能しません。
メモリ内ファイル マッピングを防止するには、次の構成行を追加する必要があります。
resource_handler.setMinMemoryMappedContentLength(-1);
注: Javadoc に書かれているとおり (および nimrodm によって通知されます) : the minimum size in bytes of a file resource that will be served using a memory mapped buffer, or -1 for no memory mapped buffers
. ただし、 value で同じ動作が得られましたInteger.MAX_VALUE
。
このパラメーターが設定されると、Jetty は Windows で静的ファイルを提供し、それらを編集することができます。