Session共享
Tomcat与Redis实现
在Tomcat的配置文件夹下编辑Context.xml文件
<Valve className="com.orangefunction.tomcat.redissessions.RedisSessionHandlerValve" />
<Manager className="com.orangefunction.tomcat.redissessions.RedisSessionManager"
host="127.0.0.1"
port="6379"
database="0"
maxInactiveInterval="7200" />
若项目是Spring MVC 需要在web.xml中添加一行 <distributable/>