码头正在做奇怪的事情。它基本上向我显示了 servlet 的目录索引。一个几乎相同的 web.xml 和上下文 xml 工作正常。这是我的 web.xml:
<?xml version="1.0" encoding="utf-16"?>
<web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<servlet>
<servlet-name>Coflight</servlet-name>
<servlet-class>org.codeliners.coflight.Coflight</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Coflight</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>
我的上下文 xml 是这个:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd">
<Configure class="org.mortbay.jetty.webapp.WebAppContext">
<Set name="contextPath">/coflight</Set>
<Set name="war">/mnt/K/coding/JCoflight/out/artifacts/JCoflight_war/Coflight.war</Set>
</Configure>
战争中的文件结构:
\ WEB-INF
+ classes
| \ org
| \ codeliners
| ... (you get the point)
\ web.xml
已解决:我不知道为什么,但是第十次重新启动 Jetty 以某种方式修复了它