我在哪里放置jetty.xml

时间:2014-08-22 17:16:32

标签: eclipse jetty embedded-jetty

如果是嵌入式Jetty,我需要在哪里放置jetty.xmljetty-web位于WEB-INF内,并自动加载。我试图把jetty.xml放在那里,但它无法加载(它没有看到它)。我正在使用mvn jetty:run来运行该服务。

1 个答案:

答案 0 :(得分:1)

他们的WIKI示例不起作用? http://wiki.eclipse.org/Jetty/Tutorial/Embedding_Jetty

public class FileServerXml {
   public static void main(String[] args) throws Exception {
       Resource fileserver_xml = Resource.newSystemResource("fileserver.xml");
       XmlConfiguration configuration = new XmlConfiguration(fileserver_xml.getInputStream());
       Server server = (Server)configuration.configure();
       server.start();
       server.join();
   }
}

听起来你需要在任何情况下重组你的jetty.xml。