Servlet 3.0的AsyncListener接口(3)

            public void onComplete(AsyncEvent event) throws IOException{

                // do 一些清理工作或者其他

            }

            public void onTimeout(AsyncEvent event) throws IOException{

                // do 一些超时处理的工作或者其他

            }

        });

        ScheduledThreadPoolExecutor executor = new ScheduledThreadPoolExecutor(10);

        executor.execute(new MyAsyncService(actx));

    }

在Servlet Filter中使用Spring容器 

Java Servlet关键点详解 

Tomcat手工搭建Jsp和Servlet程序 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/35c893f9ad55cda7ace682fc9fa9a0f1.html