Sesssion共享问题

Session共享解决方案:

    1.nginx或者haproxy做的负载均衡,用nginx做的负载均衡可以添加ip_hash这个配置;用haproxy做的负载均衡可以用balance source这个配置,从而使用一个IP的请求发到同一个服务器;

  2.利用数据库同步session;

  3.利用cookie同步session数据,但是安全性差,http请求都需要带参增加了带宽消耗;

  4.Tomcat配置session共享;

  5利用session集群存放Redis;

一、Nginx通过负载均衡IP地址固定绑定,解决Session共享

1、目录展示

  Sesssion共享问题_第1张图片

 2、导入依赖

  Sesssion共享问题_第2张图片

 3、SessionIPServlet

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("/SessionIPServlet")
public class SessionIPServlet extends HttpServlet {
    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        System.out.println("当前请求端口:"+request.getLocalPort());
        String action=request.getParameter("action");
        //向Session中存放一个数据
        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);
    }
}

4、没有Nginx的访问效果展示

  分别访问8080和8081

   

   

  Sesssion共享问题_第3张图片

 5、修改Nginx的nginx.conf文件

  Sesssion共享问题_第4张图片

 6、启动Nginx,并访问 

  访问:http://www.znzn.com/SessionIPServlet?action=setSession 

  获取:http://www.znzn.com/SessionIPServlet?action=getSession

  

      Sesssion共享问题_第5张图片

   Sesssion共享问题_第6张图片

 二、利用spring-session+Redis实现session共享

1、目录展示

  Sesssion共享问题_第7张图片

2、成功连接redis

  Sesssion共享问题_第8张图片

3、导入依赖

  Sesssion共享问题_第9张图片

<dependency>
      
      <groupId>org.springframework.bootgroupId>
      <artifactId>spring-boot-starter-webartifactId>
      
    dependency>

    
    <dependency>
      <groupId>org.springframework.bootgroupId>
      <artifactId>spring-boot-starter-redisartifactId>
    dependency> 
    <dependency>
      <groupId>org.springframework.sessiongroupId>
      <artifactId>spring-session-data-redisartifactId>
    dependency>

4、MyController

package com.zn.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.servlet.http.HttpServletRequest;

@RestController
public class MyController {
//存放Session值
@RequestMapping("/setSession")
public String setSession(HttpServletRequest request){
request.getSession().setAttribute("username","zhangsan");
return "success";
}

//获取Session值
@RequestMapping("/getSession")
public String getSession(HttpServletRequest request){
return (String)request.getSession().getAttribute("username");
}
}

5、resource文件下application.yml

  Sesssion共享问题_第10张图片

 6、App启动文件 

package com.zn;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

/**
* Hello world!
*
*/
@SpringBootApplication
public class App
{
public static void main( String[] args )
{
SpringApplication.run(App.class,args);
}
}

 7、启动Tomcat8080进行存放和获取数据

  存入数据是已将数据存放到redis缓存中

  Sesssion共享问题_第11张图片

   Sesssion共享问题_第12张图片

   Sesssion共享问题_第13张图片

 8、改变端口号并重启

  Sesssion共享问题_第14张图片

9、访问8081获取数据,此时便是在缓存中读取数据,达到共享效果

   Sesssion共享问题_第15张图片

 10、该方案配置简单,数据安全且稳定,效率高,被普遍使用;

 11、注意:在Redis中删除这个数据包,8080和8081端口都get不到session了,说明了session没有存在在JVM中,而是转存在Redis中;  

你可能感兴趣的:(Sesssion共享问题)