Is it possible to programmatically enable directory browsing for a particular path in Jetty 9.x (and if "yes" -- how)?
How to programmatically enable directory browsing for a particular path in Jetty 9.x?
1.6k Views Asked by carlspring At
2
There are 2 best solutions below
0

If you want to configure directory browsing through configuration (not programmatically) of the Web Application Deployment Descriptor (web.xml
), you will need to configure a DefaultServlet
. Here is an example:
<servlet>
<servlet-name>default</servlet-name>
<servlet-class>org.eclipse.jetty.servlet.DefaultServlet</servlet-class>
<init-param>
<param-name>resourceBase</param-name>
<param-value>/path/to/your/static/files</param-value>
</init-param>
<init-param>
<param-name>dirAllowed</param-name>
<param-value>true</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>/path/to/serve/content/on/*</url-pattern>
</servlet-mapping>
See http://download.eclipse.org/jetty/stable-9/apidocs/org/eclipse/jetty/servlet/DefaultServlet.html for details and additional configuration options.
Programmatically creating a Jetty instance with directory browsing enabled can be done by creating a ResourceHandler for static content and setting setDirectoriesListed to true , or by explicitly creating a and configuring a
DefaultServlet
. Below is an example for creating and configuring aResourceHandler
.