91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

異步請求如何利用Spring Boot來實現

發布時間:2020-11-18 15:17:06 來源:億速云 閱讀:268 作者:Leah 欄目:編程語言

這篇文章給大家介紹異步請求如何利用Spring Boot來實現,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

首先說一下幾個要點: 

1、@WebFilter 和 @WebServlet 注解中的 asyncSupported = true 屬性

異步處理的servlet若存在過濾器,則過濾器的注解@WebFilter應設置asyncSupported=true,

否則會報錯 A filter or servlet of the current chain does not support asynchronous operations.

2、@EnableAsync 注解

Spring Boot 默認添加了一些攔截 /* 的過濾器,因為 /* 會攔截所有請求,按理說我們也要設置 asyncSupported=true 屬性。因為這些過濾器都是 Spring Boot 初始化的,所以它提供了 @EnableAsync 注解來統一配置,該注解只針對 “非 @WebFilter 和 @WebServlet 注解的有效”,所以我們自己定義的 Filter 還是需要自己配置 asyncSupported=true 的。

3、AsyncContext 對象

獲取一個異步請求的上下文對象。

4、asyncContext.setTimeout(20 * 1000L);

我們不能讓異步請求無限的等待下去,通過 setTimeout 來設定最大超時時間。

下面通過兩種方式來測試異步任務:

先在 SpringBootSampleApplication 上添加 @EnableAsync 注解。

再檢查所有自定義的Filter,如存在如下兩種情況需要配置 asyncSupported=true

1) 自定義Filter 攔截了 /*

2) 某Filter 攔截了 /shanhy/* ,我們需要執行的異步請求的 Servlet 為 /shanhy/testcomet

方法一:原生Servlet方式

package org.springboot.sample.servlet;

import java.io.IOException;
import java.util.Queue;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.TimeUnit;

import javax.servlet.AsyncContext;
import javax.servlet.ServletException;
import javax.servlet.annotation.WebServlet;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

/**
 * HTTP長連接實現
 *
 * @author 單紅宇(365384722)
 * @myblog http://blog.csdn.net/catoop/
 * @create 2016年3月29日
 */
@WebServlet(urlPatterns = "/xs/cometservlet", asyncSupported = true)
//異步處理的servlet若存在過濾器,則過濾器的注解@WebFilter應設置asyncSupported=true,
//否則會報錯A filter or servlet of the current chain does not support asynchronous operations.
public class CometServlet extends HttpServlet {

 private static final long serialVersionUID = -8685285401859800066L;

 private final Queue<AsyncContext> asyncContexts = new LinkedBlockingQueue<>();

 private final Thread generator = new Thread("Async Event generator") {

  @Override
  public void run() {
   while (!generator.isInterrupted()) {// 線程有效
    try {
     while (!asyncContexts.isEmpty()) {// 不為空
      TimeUnit.SECONDS.sleep(10);// 秒,模擬耗時操作
      AsyncContext asyncContext = asyncContexts.poll();
      HttpServletResponse res = (HttpServletResponse) asyncContext.getResponse();
      res.getWriter().write("{\"result\":\"OK - "+System.currentTimeMillis()+"\"}");
      res.setStatus(HttpServletResponse.SC_OK);
      res.setContentType("application/json");
      asyncContext.complete();// 完成
     }
    } catch (InterruptedException e) {
     Thread.currentThread().interrupt();
     e.printStackTrace();
    } catch (IOException e) {
     e.printStackTrace();
    }
   }
  }

 };

 @Override
 public void init() throws ServletException {
  super.init();
  generator.start();
 }

 @Override
 protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  System.out.println(">>>>>>>>>>CometServlet Request<<<<<<<<<<<");
  doPost(req, resp);
 }

 @Override
 protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
  AsyncContext asyncContext = req.startAsync();
  asyncContext.setTimeout(20 * 1000L);
  asyncContexts.offer(asyncContext);
 }

 @Override
 public void destroy() {
  super.destroy();
  generator.interrupt();
 }


}

方法二:Controller 方式

@Controller
public class PageController {

 @RequestMapping("/async/test")
 @ResponseBody
 public Callable<String> callable() {
  // 這么做的好處避免web server的連接池被長期占用而引起性能問題,
  // 調用后生成一個非web的服務線程來處理,增加web服務器的吞吐量。
  return new Callable<String>() {
   @Override
   public String call() throws Exception {
    Thread.sleep(3 * 1000L);
    return "小單 - " + System.currentTimeMillis();
   }
  };
 }

}

最后寫一個comet.jsp頁面測試:

<%@ page pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
 <head>
 <title>長連接測試</title>
 <script type="text/javascript" src="${pageContext.request.contextPath }/webjarslocator/jquery/jquery.js"></script>
 <script type="text/javascript">
  $(function(){
   function longPolling(){
    $.getJSON('${pageContext.request.contextPath }/xs/cometservlet', function(data){
     console.log(data.result);
     $('#n1').html(data.result);
     longPolling();
    });
   }
   longPolling();

   function longPolling2(){
    $.get('${pageContext.request.contextPath }/async/test', function(data){
     console.log(data);
     $('#n2').html(data);
     longPolling2();
    });
   }
   longPolling2();
  });
 </script>
 </head>

 <body>
 <h2>長連接測試</h2>
 <h3 id="n1"></h3>
 <h3 id="n2"></h3>
 </body>
</html>

關于異步請求如何利用Spring Boot來實現就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿拉善右旗| 商丘市| 道孚县| 图木舒克市| 公主岭市| 京山县| 桂平市| 化州市| 霞浦县| 兴隆县| 新兴县| 滨海县| 西昌市| 凤山市| 梁山县| 天津市| 淳安县| 鄯善县| 白沙| 河源市| 旬阳县| 嘉定区| 德清县| 濮阳市| 宝坻区| 科技| 法库县| 瑞安市| 句容市| 兴隆县| 乌鲁木齐县| 进贤县| 中宁县| 阳朔县| 泰安市| 磐石市| 彭水| 长沙县| 浙江省| 康乐县| 嘉禾县|