1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty5.example.http.snoop;
17
18 import io.netty5.bootstrap.ServerBootstrap;
19 import io.netty5.channel.Channel;
20 import io.netty5.channel.EventLoopGroup;
21 import io.netty5.channel.MultithreadEventLoopGroup;
22 import io.netty5.channel.nio.NioHandler;
23 import io.netty5.channel.socket.nio.NioServerSocketChannel;
24 import io.netty5.handler.logging.LogLevel;
25 import io.netty5.handler.logging.LoggingHandler;
26 import io.netty5.handler.ssl.SslContext;
27 import io.netty5.handler.ssl.SslContextBuilder;
28 import io.netty5.handler.ssl.util.SelfSignedCertificate;
29
30
31
32
33
34 public final class HttpSnoopServer {
35
36 static final boolean SSL = System.getProperty("ssl") != null;
37 static final int PORT = Integer.parseInt(System.getProperty("port", SSL? "8443" : "8080"));
38
39 public static void main(String[] args) throws Exception {
40
41 final SslContext sslCtx;
42 if (SSL) {
43 SelfSignedCertificate ssc = new SelfSignedCertificate();
44 sslCtx = SslContextBuilder.forServer(ssc.certificate(), ssc.privateKey()).build();
45 } else {
46 sslCtx = null;
47 }
48
49
50 EventLoopGroup bossGroup = new MultithreadEventLoopGroup(1, NioHandler.newFactory());
51 EventLoopGroup workerGroup = new MultithreadEventLoopGroup(NioHandler.newFactory());
52 try {
53 ServerBootstrap b = new ServerBootstrap();
54 b.group(bossGroup, workerGroup)
55 .channel(NioServerSocketChannel.class)
56 .handler(new LoggingHandler(LogLevel.INFO))
57 .childHandler(new HttpSnoopServerInitializer(sslCtx));
58
59 Channel ch = b.bind(PORT).asStage().get();
60
61 System.err.println("Open your web browser and navigate to " +
62 (SSL? "https" : "http") + "://127.0.0.1:" + PORT + '/');
63
64 ch.closeFuture().asStage().sync();
65 } finally {
66 bossGroup.shutdownGracefully();
67 workerGroup.shutdownGracefully();
68 }
69 }
70 }