Package com.sishuok.chapter3.web.servlet.dispatch

Source Code of com.sishuok.chapter3.web.servlet.dispatch.DispatchServlet2

/**
* Copyright (c) 2005-2012 https://github.com/zhangkaitao
*
* Licensed under the Apache License, Version 2.0 (the "License");
*/
package com.sishuok.chapter3.web.servlet.dispatch;

import javax.servlet.AsyncContext;
import javax.servlet.AsyncEvent;
import javax.servlet.AsyncListener;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;

/**
* 分派到另一个Servlet
* <p>User: Zhang Kaitao
* <p>Date: 13-7-18 下午3:46
* <p>Version: 1.0
*/
@WebServlet(name = "dispatchServlet2", urlPatterns = "/dispatch2", asyncSupported = true)
public class DispatchServlet2 extends HttpServlet {

    @Override
    protected void doGet(final HttpServletRequest req, final HttpServletResponse resp) throws ServletException, IOException {

        System.out.println("===before start async:" + req.isAsyncStarted());
        final AsyncContext asyncContext = req.startAsync();
        System.out.println("===after start async:" + req.isAsyncStarted());

        asyncContext.setTimeout(10L * 1000);
        asyncContext.addListener(new AsyncListener() {
            @Override
            public void onComplete(final AsyncEvent event) throws IOException {
                System.out.println("=====async complete");
            }

            @Override
            public void onTimeout(final AsyncEvent event) throws IOException {
                System.out.println("=====async timeout");
            }

            @Override
            public void onError(final AsyncEvent event) throws IOException {
            }

            @Override
            public void onStartAsync(final AsyncEvent event) throws IOException {
            }
        });

        new Thread(new Runnable() {
            @Override
            public void run() {
                try {
                    Thread.sleep(3L * 1000);
                } catch (InterruptedException e) {
                }
                req.setAttribute("ok", "true");
                req.setAttribute("msg", "success");
                asyncContext.dispatch("/WEB-INF/jsp/dispatch.jsp");
            }
        }).start();

    }
}
TOP

Related Classes of com.sishuok.chapter3.web.servlet.dispatch.DispatchServlet2

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.