所需依赖包
tomcat的lib下添加redis集成session共享的jar包如下:
commons-pool2-2.2.jar或者commons-pool-1.6.jar
jedis-2.7.2.jar
tomcat-redis-session-manager1.2.jar
说明:commons-pool2-2.2.jar和commons-pool-1.6.jar根据实际配置情况来定,测试可共存。
修改tomcat配置文件
修改tomcat的context.xml 添加以下内容:
<Valve className=”com.orangefunction.tomcat.redissessions.RedisSessionHandlerValve” />
<Manager className=”com.orangefunction.tomcat.redissessions.RedisSessionManager”
host=”localhost”
port=”6379″
database=”0″
maxInactiveInterval=”60″
/>
配置完成,非常简单。