分布式集群Session共享 简单多tomcat8+redis的session共享实现

; i++) {
str = str + session.getAttribute("name" + i) + "<br>";
}

response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println(str);
out.flush();
out.close();

// 访问: http://localhost:8080/tomcat8_redis_session_web/servlet/TestRedisSessionServlet
}

上一篇:Linux 安装Redis全过程日志


下一篇:Java并发指南4:Java中的锁 Lock和synchronized