我将Jetty(版本7.4.5.v20110725)嵌入到java应用程序中。我使用Jetty的WebAppContext在./webapps/jsp/中提供JSP页面,但如果我访问localhost:8080 / jsp /我获取Jetty的目录列表,以获取./webapps/jsp/的全部内容。我已经尝试在WebAppContext上将dirAllowed参数设置为false,并且它不会更改目录列表行为。
在ResourceHandler上禁用目录列表就是将false传递给setDirectoriesListed,按预期工作。有人可以告诉我如何为WebAppContext执行此操作吗?
import org.eclipse.jetty.server.Handler;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.handler.ContextHandler;
import org.eclipse.jetty.server.handler.HandlerList;
import org.eclipse.jetty.server.handler.ResourceHandler;
import org.eclipse.jetty.server.nio.SelectChannelConnector;
import org.eclipse.jetty.servlet.ServletContextHandler;
import org.eclipse.jetty.servlet.ServletHolder;
import org.eclipse.jetty.webapp.WebAppContext;
public class Test {
public static void main(String[] args) throws Exception {
Server server = new Server();
SelectChannelConnector connector = new SelectChannelConnector();
connector.setHost("127.0.0.1");
connector.setPort(8080);
server.addConnector(connector);
// Create a resource handler for static content.
ResourceHandler staticResourceHandler = new ResourceHandler();
staticResourceHandler.setResourceBase("./webapps/static/");
staticResourceHandler.setDirectoriesListed(false);
// Create context handler for static resource handler.
ContextHandler staticContextHandler = new ContextHandler();
staticContextHandler.setContextPath("/static");
staticContextHandler.setHandler(staticResourceHandler);
// Create WebAppContext for JSP files.
WebAppContext webAppContext = new WebAppContext();
webAppContext.setContextPath("/jsp");
webAppContext.setResourceBase("./webapps/jsp/");
// ??? THIS DOES NOT STOP DIR LISTING OF ./webapps/jsp/ ???
webAppContext.setInitParameter("dirAllowed", "false");
// Create a handler list to store our static and servlet context handlers.
HandlerList handlers = new HandlerList();
handlers.setHandlers(new Handler[] { staticContextHandler, webAppContext });
// Add the handlers to the server and start jetty.
server.setHandler(handlers);
server.start();
server.join();
}
}
答案 0 :(得分:42)
您可以设置org.eclipse.jetty.servlet.Default.dirAllowed
而不是dirAllowed
:
webAppContext.setInitParameter("org.eclipse.jetty.servlet.Default.dirAllowed", "false");
测试Jetty 7.4.5.v20110725,8.1.4.v20120524,9.0.2.v20130417和9.2.0.v20140526。
答案 1 :(得分:16)
对于使用web.xml
的任何人,您也可以在那里禁用它。找到默认的servlet(Jetty的DefaultServlet
),并将dirAllowed
参数设置为false
:
<servlet>
<servlet-name>default</servlet-name>
<servlet-class>org.eclipse.jetty.servlet.DefaultServlet</servlet-class>
<init-param>
<param-name>dirAllowed</param-name>
<param-value>false</param-value>
</init-param>
</servlet>
答案 2 :(得分:7)
这适用于Jetty v9.4.3:
<强> web.xml:
强>
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee
http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
version="3.1">
<context-param>
<param-name>org.eclipse.jetty.servlet.Default.dirAllowed</param-name>
<param-value>false</param-value>
</context-param>
</web-app>
答案 3 :(得分:2)
如果有人发生这种情况,请在 Jetty 6 中找到相应内容:
<bean id="webAppContext" class="org.mortbay.jetty.webapp.WebAppContext">
.
.
<property name="initParams">
<map>
<entry key="org.mortbay.jetty.servlet.Default.dirAllowed" value="false" />
</map>
</property>
答案 4 :(得分:0)
我在网上找到了以下页面,它描述了同样的问题:
jetty-users-How-can-I-prevent-Directory-Listing-in-WebAppContext
我引用该帖子中的一个条目中提到的问题原因:
问题是由于某种原因Jetty没有合并 使用嵌入模式时正确使用用户web.xml的webdefault.xml
以下是用于解决问题的代码:
HashMap hmap = new HashMap<String, String>();
hmap.put("dirAllowed", "false");
hmap.put("redirectWelcome", "false");
hmap.put("aliases", "false");
ServletHolder []svh = wc.getServletHandler().getServlets();
if(svh != null && svh.length > 0)
{
for(int j = 0; j < svh.length; j++)
{
ServletHolder svh1 = svh[j];
if(svh1.getClassName() != null && svh1.getClassName().endsWith(DEFAULT_SERVLET))
{
svh1.setInitParameters(hmap);
}
}
}
我希望它会为你解决问题。
答案 5 :(得分:0)
目前尚未提及的替代解决方案是添加 index.html 文件。可能这不是一个非常通用的解决方案,但它符合我的需求。增加的价值在于它更加用户友好 - 不小心输入您的应用程序URL的用户将获得您选择的人类可读描述,而不是来自Jetty的一些通用错误页面。
对我而言,这适用于嵌入式Jetty ver。 9.4.5。
我把index.html放在WEB-INF目录旁边。
答案 6 :(得分:0)
在Linux中使用Jetty 9.2(但我认为它与9.x相同)应用于所有基于Jetty和Jetty的实例。
您可以更改文件/etc/jetty9/webdefault.xml
:
<init-param>
<param-name>dirAllowed</param-name>
<param-value>false</param-value>
</init-param>
我也改变了:
<init-param>
<param-name>welcomeServlets</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>redirectWelcome</param-name>
<param-value>true</param-value>
</init-param>
答案 7 :(得分:0)
另一种可行的方法是将此配置应用于jetty-web.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Configure PUBLIC "-//Jetty//Configure//EN"
"http://www.eclipse.org/jetty/configure_9_3.dtd">
<Configure class="org.eclipse.jetty.webapp.WebAppContext">
<Call name="setInitParameter">
<Arg>org.eclipse.jetty.servlet.Default.dirAllowed</Arg>
<Arg type="boolean">False</Arg>
</Call>
</Configure>