1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package io.netty.testsuite.http2;
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.logging.LogLevel;
27 import io.netty.handler.logging.LoggingHandler;
28
29
30
31
32
33 public final class Http2Server {
34
35 private final int port;
36
37 Http2Server(final int port) {
38 this.port = port;
39 }
40
41 void run() throws Exception {
42
43 EventLoopGroup group = new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory());
44 try {
45 ServerBootstrap b = new ServerBootstrap();
46 b.option(ChannelOption.SO_BACKLOG, 1024);
47 b.group(group)
48 .channel(NioServerSocketChannel.class)
49 .handler(new LoggingHandler(LogLevel.INFO))
50 .childHandler(new Http2ServerInitializer());
51
52 Channel ch = b.bind(port).sync().channel();
53
54 ch.closeFuture().sync();
55 } finally {
56 group.shutdownGracefully();
57 }
58 }
59
60 public static void main(String[] args) throws Exception {
61 int port;
62 if (args.length > 0) {
63 port = Integer.parseInt(args[0]);
64 } else {
65 port = 9000;
66 }
67 new Http2Server(port).run();
68 }
69 }