嵌入式 Jetty 是 运行 旧版本的 servlet API

Embedded Jetty is running with old version of servlets API

我的嵌入式 Jetty 在 /home/user/Desktop/jetty-web.xml 处有以下文件:

<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
xmlns="http://java.sun.com/xml/ns/javaee" 
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com
/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0"/>

我使用以下代码启动我的服务器:

    Server server = new Server();

 SelectChannelConnector connector = new SelectChannelConnector();
        connector.setPort(ServerConfig.PORT);
        connector.setMaxIdleTime(ServerConfig.MAX_IDLE_TIME);
        connector.setRequestHeaderSize(ServerConfig.REQUEST_HEADER_SIZE);
        server.setConnectors(new Connector[]{connector});

WebAppContext webAppContext = new WebAppContext();
webAppContext.setDescriptor("/home/user/Desktop/jetty-web.xml");
webAppContext.setBaseResource(Resource.newResource("/"));
        webAppContext.setContextPath("/");

//add a few servlets...

server.setHandler(webAppContext);

server.start();

我的意图是 运行 与 Servlet API 3.0。当我只编译项目的 Jetty 部分时,效果很好。但是,当我添加一个使用旧版本 Jetty(Hadoop 核心)的外部库时,我的嵌入式 Jetty 服务器降级到 2.5 并在 HttpRequest#getParts 调用中抛出 NoSuchMethodError。如何使用 Java Servlets 3.0 强制我的 Jetty 服务器 运行?

我正在使用 Jetty 8.1.16.v20140903。

如果使用构建工具,请从 hadoop 依赖项中排除 jetty 和 servlet-api 部分。

只要确保您没有使用旧版本的 Jetty。