1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package io.netty.example.http2.helloworld.server;
18
19 import io.netty.bootstrap.ServerBootstrap;
20 import io.netty.channel.Channel;
21 import io.netty.channel.ChannelOption;
22 import io.netty.channel.EventLoopGroup;
23 import io.netty.channel.MultiThreadIoEventLoopGroup;
24 import io.netty.channel.nio.NioIoHandler;
25 import io.netty.channel.socket.nio.NioServerSocketChannel;
26 import io.netty.handler.codec.http2.Http2SecurityUtil;
27 import io.netty.handler.logging.LogLevel;
28 import io.netty.handler.logging.LoggingHandler;
29 import io.netty.handler.ssl.ApplicationProtocolConfig;
30 import io.netty.handler.ssl.ApplicationProtocolConfig.Protocol;
31 import io.netty.handler.ssl.ApplicationProtocolConfig.SelectedListenerFailureBehavior;
32 import io.netty.handler.ssl.ApplicationProtocolConfig.SelectorFailureBehavior;
33 import io.netty.handler.ssl.ApplicationProtocolNames;
34 import io.netty.handler.ssl.OpenSsl;
35 import io.netty.handler.ssl.SslContext;
36 import io.netty.handler.ssl.SslContextBuilder;
37 import io.netty.handler.ssl.SslProvider;
38 import io.netty.handler.ssl.SupportedCipherSuiteFilter;
39 import io.netty.handler.ssl.util.SelfSignedCertificate;
40
41
42
43
44
45 public final class Http2Server {
46
47 static final boolean SSL = System.getProperty("ssl") != null;
48
49 static final int PORT = Integer.parseInt(System.getProperty("port", SSL? "8443" : "8080"));
50
51 public static void main(String[] args) throws Exception {
52
53 final SslContext sslCtx;
54 if (SSL) {
55 SslProvider provider = OpenSsl.isAlpnSupported() ? SslProvider.OPENSSL : SslProvider.JDK;
56 SelfSignedCertificate ssc = new SelfSignedCertificate();
57 sslCtx = SslContextBuilder.forServer(ssc.certificate(), ssc.privateKey())
58 .sslProvider(provider)
59
60
61 .ciphers(Http2SecurityUtil.CIPHERS, SupportedCipherSuiteFilter.INSTANCE)
62 .applicationProtocolConfig(new ApplicationProtocolConfig(
63 Protocol.ALPN,
64
65 SelectorFailureBehavior.NO_ADVERTISE,
66
67 SelectedListenerFailureBehavior.ACCEPT,
68 ApplicationProtocolNames.HTTP_2,
69 ApplicationProtocolNames.HTTP_1_1))
70 .build();
71 } else {
72 sslCtx = null;
73 }
74
75 EventLoopGroup group = new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory());
76 try {
77 ServerBootstrap b = new ServerBootstrap();
78 b.option(ChannelOption.SO_BACKLOG, 1024);
79 b.group(group)
80 .channel(NioServerSocketChannel.class)
81 .handler(new LoggingHandler(LogLevel.INFO))
82 .childHandler(new Http2ServerInitializer(sslCtx));
83
84 Channel ch = b.bind(PORT).sync().channel();
85
86 System.err.println("Open your HTTP/2-enabled web browser and navigate to " +
87 (SSL? "https" : "http") + "://127.0.0.1:" + PORT + '/');
88
89 ch.closeFuture().sync();
90 } finally {
91 group.shutdownGracefully();
92 }
93 }
94 }