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

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

NginxSession共享問題解決方案解析

這篇文章主要介紹了Nginx Session共享問題解決方案解析,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下

成都創(chuàng)新互聯(lián)的客戶來自各行各業(yè),為了共同目標(biāo),我們在工作上密切配合,從創(chuàng)業(yè)型小企業(yè)到企事業(yè)單位,感謝他們對我們的要求,感謝他們從不同領(lǐng)域給我們帶來的挑戰(zhàn),讓我們激情的團(tuán)隊有機(jī)會用頭腦與智慧不斷的給客戶帶來驚喜。專業(yè)領(lǐng)域包括網(wǎng)站制作、成都做網(wǎng)站、電商網(wǎng)站開發(fā)、微信營銷、系統(tǒng)平臺開發(fā)。

Nginx解決Session共享問題:

1.nginx或者h(yuǎn)aproxy做的負(fù)載均衡,用nginx做的負(fù)載均衡可以添加ip_hash這個配置;用haproxy做的負(fù)載均衡可以用balance source這個配置,從而使用一個IP的請求發(fā)到同一個服務(wù)器;

2.利用數(shù)據(jù)庫同步session;

3.利用cookie同步session數(shù)據(jù),但是安全性差,http請求都需要帶參增加了帶寬消耗;

4.Tomcat配置session共享;

5利用session集群存放redis;

1:創(chuàng)建一個工程,啟動兩個Tomcat

Nginx Session共享問題解決方案解析Nginx Session共享問題解決方案解析

2:編寫一個servlet測試

package com.zn.servlet;

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;

@WebServlet("/nginxSessionServlet")
public class SessionIPServlet extends HttpServlet {
  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    System.out.println("當(dāng)前請求端口:"+request.getLocalPort());
    String action=request.getParameter("action");
    //向Session中存放一個數(shù)據(jù)
    if(action.equals("setSession")){
      request.getSession().setAttribute("username","zhangsan");
    }else if(action.equals("getSession")){
      response.getWriter().write((String)request.getSession().getAttribute("username"));
    }
  }

  protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request,response);
  }
}

3、沒有Nginx的訪問效果展示

分別訪問8080和8081

Nginx Session共享問題解決方案解析 Nginx Session共享問題解決方案解析 Nginx Session共享問題解決方案解析

4.配置nginx.conf文件

upstream myserver{
     ip_hash;
     server 127.0.0.1:8080;
     server 127.0.0.1:8081;
  }
  server{
    listen    81;
    server_name www.bproject.com;
    location / {
      root  html;
      proxy_pass http://myserver;
      index index.html index.htm;
    }
  }

5.再次訪問

Nginx Session共享問題解決方案解析Nginx Session共享問題解決方案解析 Nginx Session共享問題解決方案解析

方法二、利用spring-session+Redis實現(xiàn)session共享

1:導(dǎo)入依賴


    
    
      org.springframework.boot
      spring-boot-starter-redis
    

    
    
      org.springframework.session
      spring-session-data-redis
    

2:創(chuàng)建controller測試

@RestController
public class SessionController {

  @RequestMapping("/setSession")
  public String setSession(HttpServletResponse response, HttpServletRequest request) throws IOException {
    request.getSession().setAttribute("username","wang");
    return "success";
  }

  @RequestMapping("/getSession")
  public String getSession(HttpServletRequest request,HttpServletResponse response){
    String username = (String) request.getSession().getAttribute("username");
    return username;
  }
}

3:application.properties文件

server.port=8082
#server.port=8083

#redis配置
spring.redis.password: wang2003

4:啟動項目測試

Nginx Session共享問題解決方案解析 Nginx Session共享問題解決方案解析Nginx Session共享問題解決方案解析

結(jié)論:該方案配置簡單,數(shù)據(jù)安全且穩(wěn)定,效率高,被普遍使用;

注意:在Redis中刪除這個數(shù)據(jù)包,8082和8083端口都get不到session了,說明了session沒有存在在JVM中,而是轉(zhuǎn)存在Redis中;

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


分享標(biāo)題:NginxSession共享問題解決方案解析
URL標(biāo)題:http://weahome.cn/article/gcejhp.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部