-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathEmbedMe.java
56 lines (48 loc) · 2.04 KB
/
EmbedMe.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
//
// ========================================================================
// Copyright (c) 1995 Mort Bay Consulting Pty Ltd and others.
//
// This program and the accompanying materials are made available under the
// terms of the Eclipse Public License v. 2.0 which is available at
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
// which is available at https://www.apache.org/licenses/LICENSE-2.0.
//
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
// ========================================================================
//
package examples;
import org.eclipse.jetty.ee10.servlet.ServletContextHandler;
import org.eclipse.jetty.http.UriCompliance;
import org.eclipse.jetty.server.HttpConfiguration;
import org.eclipse.jetty.server.HttpConnectionFactory;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.ServerConnector;
public class EmbedMe
{
public static void main(String[] args) throws Exception
{
int port = 8080;
Server server = newServer(port);
server.start();
server.join();
}
public static Server newServer(int port)
{
Server server = new Server();
HttpConfiguration httpConfig = new HttpConfiguration();
UriCompliance uriCompliance = UriCompliance.LEGACY.with("custom", UriCompliance.Violation.SUSPICIOUS_PATH_CHARACTERS);
httpConfig.setUriCompliance(uriCompliance);
HttpConnectionFactory httpConnectionFactory = new HttpConnectionFactory(httpConfig);
ServerConnector connector = new ServerConnector(server, httpConnectionFactory);
connector.setPort(port);
server.addConnector(connector);
ServletContextHandler context = new ServletContextHandler();
context.setContextPath("/");
// Allow ServletContext to accept ambiguous uris.
context.getServletHandler().setDecodeAmbiguousURIs(true);
context.addServlet(AmbiguousPathServlet.class, "/*");
server.setHandler(context);
//server.setDumpAfterStart(true);
return server;
}
}