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.pkitesting.CertificateBuilder;
35  import io.netty.pkitesting.X509Bundle;
36  
37  /**
38   * A SPDY Server that responds to a GET request with a Hello World.
39   * <p>
40   * You may also use the {@code run-example.sh} script to start the server from the command line:
41   * <pre>
42   *     ./run-example.sh spdy-server
43   * </pre>
44   * <p>
45   * Once started, you can test the server with your
46   * <a href="https://en.wikipedia.org/wiki/SPDY#Browser_support_and_usage">SPDY enabled web browser</a> by navigating
47   * to <a href="https://localhost:8443/">https://localhost:8443/</a>
48   */
49  public final class SpdyServer {
50  
51      static final int PORT = Integer.parseInt(System.getProperty("port", "8443"));
52  
53      public static void main(String[] args) throws Exception {
54          // Configure SSL.
55          X509Bundle ssc = new CertificateBuilder()
56                  .subject("cn=localhost")
57                  .setIsCertificateAuthority(true)
58                  .buildSelfSigned();
59          SslContext sslCtx = SslContextBuilder.forServer(ssc.toKeyManagerFactory())
60              .applicationProtocolConfig(new ApplicationProtocolConfig(
61                          Protocol.ALPN,
62                          // NO_ADVERTISE is currently the only mode supported by both OpenSsl and JDK providers.
63                          SelectorFailureBehavior.NO_ADVERTISE,
64                          // ACCEPT is currently the only mode supported by both OpenSsl and JDK providers.
65                          SelectedListenerFailureBehavior.ACCEPT,
66                          ApplicationProtocolNames.SPDY_3_1,
67                          ApplicationProtocolNames.HTTP_1_1))
68              .build();
69  
70          // Configure the server.
71          EventLoopGroup bossGroup = new MultiThreadIoEventLoopGroup(1, NioIoHandler.newFactory());
72          EventLoopGroup workerGroup = new MultiThreadIoEventLoopGroup(NioIoHandler.newFactory());
73          try {
74              ServerBootstrap b = new ServerBootstrap();
75              b.option(ChannelOption.SO_BACKLOG, 1024);
76              b.group(bossGroup, workerGroup)
77               .channel(NioServerSocketChannel.class)
78               .handler(new LoggingHandler(LogLevel.INFO))
79               .childHandler(new SpdyServerInitializer(sslCtx));
80  
81              Channel ch = b.bind(PORT).sync().channel();
82  
83              System.err.println("Open your SPDY-enabled web browser and navigate to https://127.0.0.1:" + PORT + '/');
84              System.err.println("If using Chrome browser, check your SPDY sessions at chrome://net-internals/#spdy");
85  
86              ch.closeFuture().sync();
87          } finally {
88              bossGroup.shutdownGracefully();
89              workerGroup.shutdownGracefully();
90          }
91      }
92  }