1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty.testsuite.svm;
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.MultiThreadIoEventLoopGroup;
23 import io.netty.channel.nio.NioIoHandler;
24 import io.netty.channel.socket.nio.NioServerSocketChannel;
25 import io.netty.handler.logging.LogLevel;
26 import io.netty.handler.logging.LoggingHandler;
27
28
29
30
31
32 public final class HttpNativeServer {
33
34
35
36
37 private HttpNativeServer() {
38 }
39
40 public static void main(String[] args) throws Exception {
41
42 EventLoopGroup bossGroup = new MultiThreadIoEventLoopGroup(1, NioIoHandler.newFactory());
43 EventLoopGroup workerGroup = new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory());
44
45 boolean serverStartSucess = false;
46 try {
47 ServerBootstrap b = new ServerBootstrap();
48 b.option(ChannelOption.SO_BACKLOG, 1024);
49 b.group(bossGroup, workerGroup)
50 .channel(NioServerSocketChannel.class)
51 .handler(new LoggingHandler(LogLevel.INFO))
52 .childHandler(new HttpNativeServerInitializer());
53
54 Channel channel = b.bind(0).sync().channel();
55 System.err.println("Server started, will shutdown now.");
56 channel.close().sync();
57 serverStartSucess = true;
58 } finally {
59 bossGroup.shutdownGracefully();
60 workerGroup.shutdownGracefully();
61 }
62
63 System.exit(serverStartSucess ? 0 : 1);
64 }
65 }