auf Jetty 9, Ich versuche, einen Handler zu schreiben HTTP-Anfragen zu behandeln. Basierend auf this link Ich brauche den folgenden Code auszuführen:Jetty 9 - HttpCompliance.LEGACY
import org.eclipse.jetty.http.HttpCompliance;
import org.eclipse.jetty.server.HttpConnectionFactory;
import org.eclipse.jetty.server.Server;
public class OneHandler
{
public static void main(String[] args) throws Exception
{
Server server = new Server(8080);
server.getConnectors()[0].getConnectionFactory(HttpConnectionFactory.class).setHttpCompliance(HttpCompliance.LEGACY);
server.setHandler(new HelloHandler());
server.start();
server.join();
} }
Allerdings weiß ich nicht, wo zum Download: org.eclipse.jetty.http.HttpCompliance