#上传以下三个jar文件至tomcat的lib目录
commons-pool2-2.3.jar
jedis-2.7.3.jar
tomcat-redis-session-manager-master-2.0.0.jar
#修改context.xml添加如下内容
<Valve className="com.naritech.nicole.gump.RedisSessionHandlerValve" />
<Manager className="com.naritech.nicole.gump.RedisSessionManager"
host="127.0.0.1"
port="6379"
database="0"
maxInactiveInterval="60"
/>
#如果是redis集群使用以下配置
1) 部署Redis+redis集群,参考文档:https://www.cnblogs.com/kevingrace/p/9004460.html
2) redis集群方式的session共享配置为(conf/context.xml):
<Valve className="com.orangefunction.tomcat.redissessions.RedisSessionHandlerValve" />