-
Notifications
You must be signed in to change notification settings - Fork 9
/
ServerMain.java
executable file
·86 lines (72 loc) · 3.14 KB
/
ServerMain.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//
// ========================================================================
// 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 java.net.URI;
import java.net.URL;
import examples.logging.Logging;
import org.eclipse.jetty.ee10.cdi.CdiDecoratingListener;
import org.eclipse.jetty.ee10.cdi.CdiServletContainerInitializer;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.ee10.servlet.DefaultServlet;
import org.eclipse.jetty.ee10.servlet.ServletContextHandler;
import org.eclipse.jetty.util.resource.Resource;
import org.eclipse.jetty.ee10.websocket.jakarta.server.config.JakartaWebSocketServletContainerInitializer;
import org.eclipse.jetty.util.resource.ResourceFactory;
import org.slf4j.LoggerFactory;
public class ServerMain
{
public static void main(String[] args)
{
Logging.config();
try
{
new ServerMain().run(8080);
}
catch (Throwable t)
{
LoggerFactory.getLogger(ServerMain.class).warn("Failed to start Server", t);
}
}
public void run(int port) throws Exception
{
Server server = new Server(port);
URL webRootLocation = this.getClass().getResource("/static-root/index.html");
if (webRootLocation == null)
{
throw new IllegalStateException("Unable to determine webroot URL location");
}
URI webRootUri = URI.create(webRootLocation.toURI().toASCIIString().replaceFirst("/index.html$", "/"));
System.err.printf("Web Root URI: %s%n", webRootUri);
ServletContextHandler context = new ServletContextHandler();
context.setContextPath("/");
Resource webResource = ResourceFactory.of(context).newResource(webRootUri);
context.setBaseResource(webResource);
context.setWelcomeFiles(new String[]{"index.html"});
context.getMimeTypes().addMimeMapping("txt", "text/plain;charset=utf-8");
// Enable Weld + CDI
context.setInitParameter(CdiServletContainerInitializer.CDI_INTEGRATION_ATTRIBUTE, CdiDecoratingListener.MODE);
context.addServletContainerInitializer(new CdiServletContainerInitializer());
context.addServletContainerInitializer(new org.jboss.weld.environment.servlet.EnhancedListener());
// Add WebSocket endpoints
JakartaWebSocketServletContainerInitializer.configure(context, (servletContext, wsContainer) ->
wsContainer.addEndpoint(TimeSocket.class));
// Add Servlet endpoints
context.addServlet(TimeServlet.class, "/time/");
context.addServlet(DefaultServlet.class, "/");
// Add to Server
server.setHandler(context);
// Start Server
server.start();
server.join();
}
}