前提: 单实例的工程下, session是一个非常好用的对象, 因为session属于服务器端, 而且对于用户(浏览器)来说是唯一的
但是针对集群(今天大拿跟我说了下集群和分布式的概念)来说的话, session共享就变得极其重要,因为session是属于服务器端的, 服务器A有session, 但是服务器B拿session是拿不到的
废话不多说, 开始上代码. 总共分三步:
第一步: 首先安装一个redis,
有window版本的: 这个比较快, 下载之后解压下来就能用 https://github.com/ServiceStack/redis-windows。
也有linux版本的(,虚拟机下载,注意台式的电脑不要下载最新版本,下载上一个版本,有网卡随意 ,linux系统下载 7,第一次安装比较费劲, 有兴趣的可以看看虚拟机安装redis),
第二步, 导入maven依赖
<!-- Jedis -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>2.9.0</version>
</dependency>
<!-- Spring Data Redis -->
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-redis</artifactId>
<version>1.8.4.RELEASE</version>
</dependency>
<!-- Spring Session -->
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session</artifactId>
<version>1.3.1.RELEASE</version>
</dependency>
<!-- Apache Commons Pool -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-pool2</artifactId>
<version>2.4.2</version>
</dependency>
上面这两个主要就是 redis ,springsession 的依赖包
第三步,配置类:
这里有两种方式:纯注解以及xml配置的方式.
纯注解形式:
//在配置类上加入@EnableRedisHttpSession,并配置JedisConnectionFactory Bean
@Configuration
@EnableRedisHttpSession
public class SessionConfig {
@Bean
public JedisConnectionFactory connectionFactory() {
JedisConnectionFactory jedisConnectionFactory = new JedisConnectionFactory();
jedisConnectionFactory.setHostName("192.168.220.128"); // 默认localhost
jedisConnectionFactory.setPort(6379); // 默认6379
jedisConnectionFactory.setDatabase(0); // 默认0
jedisConnectionFactory.afterPropertiesSet();
// 可以如果有密码的话可以配置用户名和密码,一般来说这个都不需要配置密码
return jedisConnectionFactory;
}
}
//继承AbstractHttpSessionApplicationInitializer,无参构造调用父类方法,传入配置类
public class SessionInitializer extends AbstractHttpSessionApplicationInitializer{
public SessionInitializer() {
super(SessionConfig .class);
}
}
ok ,这样就好了.
我们先运行单例的试一试,一会再试一下双例集群
添加测试代码, 我这里用了 tomcat的路径加session的值.(后面会用到)
后端:
/**
*
* @author IT
*
*/
@Controller
@RequestMapping("/session")
public class SessionController {
@RequestMapping("/get")
public String index(HttpServletRequest req, HttpServletResponse res, Model model) {
ServletContext servletContext = req.getSession().getServletContext();
String realPath = servletContext.getRealPath("");
String sessionId=req.getSession().getId();
model.addAttribute("sessionId", realPath+sessionId);
return "views/session";
}
}
前端:
<%@ page import="java.util.List" %>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%
String contextPath = request.getContextPath();
%>
<html>
<head>
<title>首页</title>
<link href="<%=contextPath%>/static/mycss.css" rel="stylesheet"/>
</head>
<body>
<%--<%@include file="comm/top.jsp" %>--%>
<jsp:include page="comm/top.jsp"/>
<div class="container">
<div class="jumbotron">
<h1>SessionID:>>></h1><h3>${sessionId}</h3>
</div>
</body>
</html>
运行结果:
看一下redisl里面,
好的我解释一下: 其实我一个都看不懂 ,
ok运行没问题:
接下来就是双实例集群
首先把上面的项目复制出来, 放到一个tomcat8的webapp下, 然后把这个tomcat完整复制,分我这里取名字为:
修改两个tomcat的端口号:这种port的属性前面都加个1, 这样就变成了18080, 另一个加上2, 就成了28080
进入到bin目录中, 点击startup.bat, 运行, 然后输入 localhost:18080/MyBlogSystem/session/get 看下页面结果.
两个tomcat运行正常之后, 接下来就是分发.
.这里用到了nginx,非常好配置,
首先下载一个window版本的,地址百度吧我太懒了,,,,,
然后打开conf里面的nginx.conf 文件,添加一下配置: 接着下面就行.
upstream wenbin.com { #这里是分发地址 后面是一些配置参数
server 127.0.0.1:28080 weight=1 max_fails=1 fail_timeout=1s;
server 127.0.0.1:18080 weight=1 max_fails=1 fail_timeout=1s;
}
server
{
listen 80; # 监听80端口
server_name localhost; #监听 本地
#include domains/proxy.gcnf;
location / {
proxy_pass http://wenbin.com; # 如果上坚挺符合条件,那就进入这里面
proxy_next_upstream http_500 http_502 http_503 http_504 error timeout invalid_header;
proxy_redirect default;
proxy_connect_timeout 2s;
}
}
进入到两个tomcat的启动目录,分别启动:
访问http://localhost/项目名字/session/get
我nginx配置的分发权重是1:1的
OK ,实现了session共享啦啦啦啦/撒花/撒花.
明天有空弄一下springboot的session,据说简单....