1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.example.http.helloworld;
17
18 import io.netty.bootstrap.ServerBootstrap;
19 import io.netty.channel.Channel;
20 import io.netty.channel.ChannelOption;
21 import io.netty.channel.EventLoopGroup;
22 import io.netty.channel.nio.NioEventLoopGroup;
23 import io.netty.channel.socket.nio.NioServerSocketChannel;
24 import io.netty.handler.logging.LogLevel;
25 import io.netty.handler.logging.LoggingHandler;
26 import io.netty.handler.ssl.SslContext;
27 import io.netty.handler.ssl.SslContextBuilder;
28 import io.netty.handler.ssl.util.SelfSignedCertificate;
29
30
31
32
33
34 public final class HttpHelloWorldServer {
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 NioEventLoopGroup(1);
51 EventLoopGroup workerGroup = new NioEventLoopGroup();
52 try {
53 ServerBootstrap b = new ServerBootstrap();
54 b.option(ChannelOption.SO_BACKLOG, 1024);
55 b.group(bossGroup, workerGroup)
56 .channel(NioServerSocketChannel.class)
57 .handler(new LoggingHandler(LogLevel.INFO))
58 .childHandler(new HttpHelloWorldServerInitializer(sslCtx));
59
60 Channel ch = b.bind(PORT).sync().channel();
61
62 System.err.println("Open your web browser and navigate to " +
63 (SSL? "https" : "http") + "://127.0.0.1:" + PORT + '/');
64
65 ch.closeFuture().sync();
66 } finally {
67 bossGroup.shutdownGracefully();
68 workerGroup.shutdownGracefully();
69 }
70 }
71 }