View Javadoc
1   /*
2    * Copyright 2014 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License,
5    * version 2.0 (the "License"); you may not use this file except in compliance
6    * with the License. You may obtain a copy of the License at:
7    *
8    *   https://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13   * License for the specific language governing permissions and limitations
14   * under the License.
15   */
16  package io.netty.example.spdy.server;
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  import io.netty.handler.ssl.ApplicationProtocolConfig;
28  import io.netty.handler.ssl.ApplicationProtocolConfig.Protocol;
29  import io.netty.handler.ssl.ApplicationProtocolConfig.SelectedListenerFailureBehavior;
30  import io.netty.handler.ssl.ApplicationProtocolConfig.SelectorFailureBehavior;
31  import io.netty.handler.ssl.ApplicationProtocolNames;
32  import io.netty.handler.ssl.SslContext;
33  import io.netty.handler.ssl.SslContextBuilder;
34  import io.netty.handler.ssl.util.SelfSignedCertificate;
35  
36  /**
37   * A SPDY Server that responds to a GET request with a Hello World.
38   * <p>
39   * You may also use the {@code run-example.sh} script to start the server from the command line:
40   * <pre>
41   *     ./run-example.sh spdy-server
42   * </pre>
43   * <p>
44   * Once started, you can test the server with your
45   * <a href="https://en.wikipedia.org/wiki/SPDY#Browser_support_and_usage">SPDY enabled web browser</a> by navigating
46   * to <a href="https://localhost:8443/">https://localhost:8443/</a>
47   */
48  public final class SpdyServer {
49  
50      static final int PORT = Integer.parseInt(System.getProperty("port", "8443"));
51  
52      public static void main(String[] args) throws Exception {
53          // Configure SSL.
54          SelfSignedCertificate ssc = new SelfSignedCertificate();
55          SslContext sslCtx = SslContextBuilder.forServer(ssc.certificate(), ssc.privateKey())
56              .applicationProtocolConfig(new ApplicationProtocolConfig(
57                          Protocol.ALPN,
58                          // NO_ADVERTISE is currently the only mode supported by both OpenSsl and JDK providers.
59                          SelectorFailureBehavior.NO_ADVERTISE,
60                          // ACCEPT is currently the only mode supported by both OpenSsl and JDK providers.
61                          SelectedListenerFailureBehavior.ACCEPT,
62                          ApplicationProtocolNames.SPDY_3_1,
63                          ApplicationProtocolNames.HTTP_1_1))
64              .build();
65  
66          // Configure the server.
67          EventLoopGroup bossGroup = new MultiThreadIoEventLoopGroup(1, NioIoHandler.newFactory());
68          EventLoopGroup workerGroup = new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory());
69          try {
70              ServerBootstrap b = new ServerBootstrap();
71              b.option(ChannelOption.SO_BACKLOG, 1024);
72              b.group(bossGroup, workerGroup)
73               .channel(NioServerSocketChannel.class)
74               .handler(new LoggingHandler(LogLevel.INFO))
75               .childHandler(new SpdyServerInitializer(sslCtx));
76  
77              Channel ch = b.bind(PORT).sync().channel();
78  
79              System.err.println("Open your SPDY-enabled web browser and navigate to https://127.0.0.1:" + PORT + '/');
80              System.err.println("If using Chrome browser, check your SPDY sessions at chrome://net-internals/#spdy");
81  
82              ch.closeFuture().sync();
83          } finally {
84              bossGroup.shutdownGracefully();
85              workerGroup.shutdownGracefully();
86          }
87      }
88  }