【问题标题】:Handling Http status code 302 Moved Temporarily in Netty处理 Http 状态码 302 在 Netty 中临时移动
【发布时间】:2013-12-11 07:49:43
【问题描述】:

我对我的 URL 发出的 http 请求收到 302 状态代码。我希望它由我的 netty 代码处理。

我的客户端代码:

      public static void main(String[] args) throws Exception {
           URI uri = new URI("http://myurl.mydomain.com/v1/v2?param1=value1&param2=value2");           
           String host = uri.getHost();
            int port = 80;

         // Configure the client.
            EventLoopGroup group = new NioEventLoopGroup();
            try {
                Bootstrap b = new Bootstrap();
                b.group(group)
                 .channel(NioSocketChannel.class)
                 .handler(new NettyClientInitializer());
                // Make the connection attempt.
                Channel ch = b.connect(host, port).sync().channel();
                // Prepare the HTTP request.
                HttpRequest request = new DefaultHttpRequest(
                        HttpVersion.HTTP_1_1, HttpMethod.GET, uri.toString());
                request.headers().set(HttpHeaders.Names.HOST, host);
                request.headers().set(HttpHeaders.Names.CONNECTION, HttpHeaders.Values.KEEP_ALIVE);  
                request.headers().set(HttpHeaders.Names.CACHE_CONTROL, HttpHeaders.Values.NO_CACHE);

                /*// Set some example cookies.
                request.headers().set(
                        HttpHeaders.Names.COOKIE,
                        ClientCookieEncoder.encode(
                                new DefaultCookie("my-cookie", "foo"),
                                new DefaultCookie("another-cookie", "bar")));
*/
                // Send the HTTP request.
                ch.writeAndFlush(request);

                // Wait for the server to close the connection.
                ch.closeFuture().sync();
            } finally {
                // Shut down executor threads to exit.
                group.shutdownGracefully();
            }
      }

我的处理程序代码:

public class NettyClientHandler extends SimpleChannelInboundHandler<HttpObject> {
    @Override
    public void channelRead0(ChannelHandlerContext ctx, HttpObject msg) throws Exception {
        if (msg instanceof HttpResponse) {
            HttpResponse response = (HttpResponse) msg;

            System.out.println("STATUS: " + response.getStatus());
            System.out.println("VERSION: " + response.getProtocolVersion());
            System.out.println();

            if (!response.headers().isEmpty()) {
                for (String name: response.headers().names()) {
                    for (String value: response.headers().getAll(name)) {
                        System.out.println("HEADER: " + name + " = " + value);
                    }
                }
                System.out.println();
            }

            if (HttpHeaders.isTransferEncodingChunked(response)) {
                System.out.println("CHUNKED CONTENT {");
            } else {
                System.out.println("CONTENT {");
            }
        }
        if (msg instanceof HttpContent) {
            HttpContent content = (HttpContent) msg;

            System.out.print(content.content().toString(CharsetUtil.UTF_8));
            System.out.flush();

            if (content instanceof LastHttpContent) {
                System.out.println("} END OF CONTENT");
            }
        }
    }

    @Override
    public void exceptionCaught(
            ChannelHandlerContext ctx, Throwable cause) throws Exception {
        cause.printStackTrace();
        ctx.close();
    }


}

我的初始化代码:

public class NettyClientInitializer extends ChannelInitializer<SocketChannel> {


    @Override
    public void initChannel(SocketChannel ch) throws Exception {
        // Create a default pipeline implementation.
        ChannelPipeline p = ch.pipeline();

        p.addLast("log", new LoggingHandler(LogLevel.INFO));
        // Enable HTTPS if necessary.
        /*
        if (ssl) {
            SSLEngine engine =
                SecureChatSslContextFactory.getClientContext().createSSLEngine();
            engine.setUseClientMode(true);

            p.addLast("ssl", new SslHandler(engine));
        }
*/
        p.addLast("codec", new HttpClientCodec());

        // Remove the following line if you don't want automatic content decompression.
       // p.addLast("inflater", new HttpContentDecompressor());

        // Uncomment the following line if you don't want to handle HttpChunks.
        p.addLast("aggregator", new HttpObjectAggregator(1048576));       
        p.addLast("handler", new NettyClientHandler());

    }
}

我提到这个链接有类似的问题: redirect - handling http 302 moved temporarily using netty

但是这里的代码使用 3.x 版本的库,并且到目前为止还没有这个问题的答案..

我正在使用 Netty 4.0.12 库..

请告诉我如何使用 Netty 处理这个问题

【问题讨论】:

    标签: java redirect httprequest netty http-status-code-302


    【解决方案1】:

    您可以修改您的 NettyClientHandler 以检查 302 重定向,并打开一个新连接来处理重定向的 HTML 内容。

    NettyClientHandler的更改:

    //We know this is a redirect...
                if(response.getStatus().code() == HttpResponseStatus.FOUND.code()){//When its a 302...
    
                    if(response.headers().names().contains("Location"))
                    {
                        System.out.println("We have a redirect...");
                        //Now we will do the process over to get the actual content...
                        Main.main(new String[]{response.headers().get("Location")});
                    }
                }
    

    main() 为例来处理重定向的内容:

    String urlPlace = "http://initial.com";
    
            if(args != null && args.length > 0)
            {
                urlPlace = args[0];
            }
    
            URI uri = new URI(urlPlace);
            String host = uri.getHost();
            int port = uri.getPort();
            if(port == -1)
            {
                port = 80;
            }
    

    当我们得到 HTTP 状态码 302 时,“服务器”有责任为新的 URL 位置设置 Location 标头,以便客户端处理适当的。

    Wikipedia 302

    【讨论】:

    • 您能否用相同的代码告诉我如何在收到响应后立即关闭连接?因为现在完全关闭连接大约需要 5 分钟。
    • // 发送 HTTP 请求。 ch.writeAndFlush(request).addListener(ChannelFutureListener.CLOSE);
    • 连接会立即关闭,但无法读取响应。它显示为空
    猜你喜欢
    • 1970-01-01
    • 2015-12-29
    • 2019-03-03
    • 2020-07-14
    • 1970-01-01
    • 2022-06-21
    • 1970-01-01
    • 2018-01-15
    相关资源
    最近更新 更多