1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package io.netty5.example.http.helloworld;
17
18 import io.netty5.channel.ChannelInitializer;
19 import io.netty5.channel.ChannelPipeline;
20 import io.netty5.channel.socket.SocketChannel;
21 import io.netty5.handler.codec.http.HttpServerCodec;
22 import io.netty5.handler.codec.http.HttpServerExpectContinueHandler;
23 import io.netty5.handler.ssl.SslContext;
24
25 public class HttpHelloWorldServerInitializer extends ChannelInitializer<SocketChannel> {
26
27 private final SslContext sslCtx;
28
29 public HttpHelloWorldServerInitializer(SslContext sslCtx) {
30 this.sslCtx = sslCtx;
31 }
32
33 @Override
34 public void initChannel(SocketChannel ch) {
35 ChannelPipeline p = ch.pipeline();
36 if (sslCtx != null) {
37 p.addLast(sslCtx.newHandler(ch.bufferAllocator()));
38 }
39 p.addLast(new HttpServerCodec());
40 p.addLast(new HttpServerExpectContinueHandler());
41 p.addLast(new HttpHelloWorldServerHandler());
42 }
43 }