Map jetty ResourceHandler to a URL

落爺英雄遲暮 提交于 2019-12-04 02:49:24

The ResourceHandler has no context configurable, but you can simply wrap it in a ContextHandler to achieve that.

Try this instead:

ContextHandler ctx = new ContextHandler("/my-files"); /* the server uri path */
ResourceHandler resHandler = new ResourceHandler();
resHandler.setResourceBase("path-to-web");
ctx.setHandler(resHandler);
server.setHandler(ctx);

That will serve /my-files as the ResourceHandler content of the filesystem path-to-web

The above doesn't work for Jetty 9, but this does:

ContextHandler contextHandler = new ContextHandler("/my-files");
contextHandler.setResourceBase("/tmp/static");

ResourceHandler resourceHandler = new ResourceHandler();
contextHandler.setHandler(resourceHandler);

server.setHandler(contextHandler);
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!