真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

javaweb如何解決瞬間高并發(fā)

1、任何的高并發(fā),請求總是會有一個順序的

創(chuàng)新互聯(lián)技術(shù)團隊十多年來致力于為客戶提供成都做網(wǎng)站、網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè)、成都品牌網(wǎng)站建設(shè)、全網(wǎng)整合營銷推廣、搜索引擎SEO優(yōu)化等服務(wù)。經(jīng)過多年發(fā)展,公司擁有經(jīng)驗豐富的技術(shù)團隊,先后服務(wù)、推廣了千余家網(wǎng)站,包括各類中小企業(yè)、企事單位、高校等機構(gòu)單位。

2、java的隊列的數(shù)據(jù)結(jié)構(gòu)是先進先出的取值順序

3、BlockingQueue類(線程安全)(使用方法可以百度)

java web如何解決瞬間高并發(fā)

一般使用LinkedBlockingQueue

利用以上幾點,我們可以把高并發(fā)時候的請求放入一個隊列,隊列的大小可以自己定義,比如隊列容量為1000個數(shù)據(jù),那么可以利用過濾器或者攔截器把當(dāng)前的請求放入隊列,如果隊列的容量滿了,其余的請求可以丟掉或者作出相應(yīng)回復(fù)

具體實施:

利用生產(chǎn)者、消費者模型:

java web如何解決瞬間高并發(fā)

將隊列的請求一一處理完。

 上代碼:

/**
 * @author fuguangli
 * @description 前沿消費者類
 * @Create date:  2017/3/7
 * @using  EXAMPLE
 */
public class Customer implements Runnable{


  /**
   *     拋出異常  特殊值    阻塞     超時
   插入    add(e)  offer(e)  put(e)  offer(e, time, unit)
   移除    remove()  poll()  take()  poll(time, unit)
   檢查    element()  peek()  不可用  不可用

   */
  private BlockingQueue blockingQueue;
  private AtomicInteger count = new AtomicInteger();
  public Customer(BlockingQueue blockingQueue) {
    this.blockingQueue = blockingQueue;
  }

  /**
   * When an object implementing interface Runnable is used
   * to create a thread, starting the thread causes the object's
   * run method to be called in that separately executing
   * thread.
   * 

* The general contract of the method run is that it may * take any action whatsoever. * * @see Thread#run() */ @Override public void run() { System.out.println("消費者線程啟動..."); LockFlag.setCustomerRunningFlag(true); try { while (LockFlag.getProducerRunningFlag()){ System.out.println(Thread.currentThread().getId()+"I'm Customer.Queue current size="+blockingQueue.size()); String data = (String) blockingQueue.poll(10, TimeUnit.SECONDS); if(data!=null){ System.out.println(Thread.currentThread().getId()+"*************正在消費數(shù)據(jù) data="+data); }else{ //表示超過取值時間,視為生產(chǎn)者不再生產(chǎn)數(shù)據(jù) System.out.println(Thread.currentThread().getId()+"隊列為空無數(shù)據(jù),請檢查生產(chǎn)者是否阻塞"); } Thread.sleep(50); } System.err.println("消費者程序執(zhí)行完畢"); } catch (InterruptedException e) { e.printStackTrace(); System.err.println("消費者程序退出"); LockFlag.setCustomerRunningFlag(false);//異常退出線程 Thread.currentThread().interrupt(); } } }

package com.qysxy.framework.queue;

import java.util.concurrent.BlockingQueue;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicInteger;

/**
 * @author fuguangli
 * @description 隊列生產(chǎn)者類
 * @Create date:  2017/3/7
 * @using    EXAMPLE
 */
public class Producer implements Runnable{


  /**
   *     拋出異常  特殊值    阻塞     超時
   插入  add(e)  offer(e)  put(e)  offer(e, time, unit)
   移除  remove()  poll()  take()  poll(time, unit)
   檢查  element()  peek()  不可用  不可用

   */
  private BlockingQueue blockingQueue;
  private AtomicInteger count = new AtomicInteger();
  public Producer(BlockingQueue blockingQueue) {
    this.blockingQueue = blockingQueue;
  }

  /**
   * When an object implementing interface Runnable is used
   * to create a thread, starting the thread causes the object's
   * run method to be called in that separately executing
   * thread.
   * 

* The general contract of the method run is that it may * take any action whatsoever. * * @see Thread#run() */ @Override public void run() { System.out.println("生產(chǎn)者線程啟動..."); LockFlag.setProducerRunningFlag(true); try { while (LockFlag.getProducerRunningFlag()){ String data = "data:"+count.incrementAndGet(); if(blockingQueue.offer(data,10, TimeUnit.SECONDS)){ //返回true表示生產(chǎn)數(shù)據(jù)正確 System.out.println("^^^^^^^^^^^^^^正在生產(chǎn)數(shù)據(jù) data="+data); }else { //表示阻塞時間內(nèi)還沒有生產(chǎn)者生產(chǎn)數(shù)據(jù) System.out.println("生產(chǎn)者異常,無法生產(chǎn)數(shù)據(jù)"); } Thread.sleep(50); } } catch (InterruptedException e) { e.printStackTrace(); System.err.println("生產(chǎn)者程序退出"); LockFlag.setProducerRunningFlag(false);//異常退出線程 Thread.currentThread().interrupt(); } } }

package com.qysxy.framework.queue;

/**
 * @author fuguangli
 * @description 前沿生產(chǎn)者消費者模型的鎖類
 * @Create date:  2017/3/7
 */
public class LockFlag {
  /**
   * 生產(chǎn)者互斥鎖
   */
  private static Boolean producerRunningFlag = false;
  /**
   * 消費者互斥鎖
   */
  private static Boolean customerRunningFlag = false;

  public static Boolean getProducerRunningFlag() {
    return producerRunningFlag;
  }

  public static void setProducerRunningFlag(Boolean producerRunningFlag) {
    LockFlag.producerRunningFlag = producerRunningFlag;
  }

  public static Boolean getCustomerRunningFlag() {
    return customerRunningFlag;
  }

  public static void setCustomerRunningFlag(Boolean customerRunningFlag) {
    LockFlag.customerRunningFlag = customerRunningFlag;
  }
}

package com.qysxy.framework.queue;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.Queue;
import java.util.concurrent.*;

/**
 * @author fuguangli
 * @description 前沿隊列實用類,用于大量并發(fā)用戶
 * @Create date:  2017/3/7
 */
public class BlockingQueueHelper {


  private static final Integer maxQueueSize = 1000;
  private static BlockingQueue blockingQueue = new LinkedBlockingQueue(maxQueueSize);
  private static ExecutorService threadPool = Executors.newCachedThreadPool();


  public static BlockingQueue getBlockingQueue() {
    if (blockingQueue == null) {
      blockingQueue = new LinkedBlockingQueue(maxQueueSize);
    }
    return blockingQueue;
  }

  /**
   * @param o 隊列處理對象(包含request,response,data)
   */
  public static void requestQueue(Object o) {
    //檢測當(dāng)前的隊列大小
    if (blockingQueue != null && blockingQueue.size() < maxQueueSize) {
      //可以正常進入隊列
      if (blockingQueue.offer(o)) {
        //添加成功,檢測數(shù)據(jù)處理線程是否正常
        if (LockFlag.getCustomerRunningFlag()) {
          //說明處理線程類正常運行
        } else {
          //說明處理線程類停止,此時,應(yīng)重新啟動線程進行數(shù)據(jù)處理
          LockFlag.setCustomerRunningFlag(true);

          //example:run
          Customer customer = new Customer(blockingQueue);
          threadPool.execute(customer);

        }

      } else {
        //進入隊列失敗,做出相應(yīng)的處理,或者嘗試重新進入隊列

      }
    } else {
      //隊列不正常,或隊列大小已達上限,做出相應(yīng)處理

    }

  }
}

好了,這時候,利用過濾器或者攔截器將每個請求封裝成隊列元素進行處理就行。

當(dāng)然了,對于多應(yīng)用服務(wù)器的部署架構(gòu)來說,數(shù)據(jù)庫也需要加鎖,數(shù)據(jù)庫隔離級別下篇再說。

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持創(chuàng)新互聯(lián)。


本文名稱:javaweb如何解決瞬間高并發(fā)
分享路徑:http://weahome.cn/article/ggehhi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部