前面有用 tomcat-redis-session-manager來實現分散式session管理,但是它有一定的局限性,主要是跟tomcat綁定太緊了,這裡改成用Spring Session來管理分散式session,Spring Session就完全實現了與具體的容器無關,如果需要瞭解如何用tom ...
前面有用 tomcat-redis-session-manager來實現分散式session管理,但是它有一定的局限性,主要是跟tomcat綁定太緊了,這裡改成用Spring Session來管理分散式session,Spring Session就完全實現了與具體的容器無關,如果需要瞭解如何用tomcat-redis-session-manager實現分分散式session,請看我之前的文章,下麵正式進入主題,Spring Session項目搭建。
1. 引入Spring Session maven依賴
<!-- spring session begin --> <dependency> <groupId>redis.clients</groupId> <artifactId>jedis</artifactId> <version>2.9.0</version> </dependency> <dependency> <groupId>org.springframework.data</groupId> <artifactId>spring-data-redis</artifactId> <version>1.5.2.RELEASE</version> </dependency> <dependency> <groupId>org.springframework.session</groupId> <artifactId>spring-session</artifactId> <version>1.3.1.RELEASE</version> </dependency> <!-- spring session end -->
2. Spring配置文件中添加Spring Session相關配置(這裡重點體現Spring Session,因此並沒有列出redis相關配置,需要可參考實例代碼)
<!-- Spring Session begin -->
<bean id="redisHttpSessionConfiguration"
class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration">
<property name="maxInactiveIntervalInSeconds" value="1800" />
</bean>
<!-- Spring Session end -->
3. 在web.xml中配置Spring Session的Filter,它必須放在所有Filter的前面
<!-- 添加一個session代理filter,來包裝Servlet的getSession,需要放在所有filter鏈最前面 --> <filter> <filter-name>springSessionRepositoryFilter</filter-name> <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class> </filter> <filter-mapping> <filter-name>springSessionRepositoryFilter</filter-name> <url-pattern>/*</url-pattern> </filter-mapping>
這幾乎就是所有的步驟了,是不是感覺很簡單呢?趕快自己動手試一試吧,看起來高大上的分散式Session就這樣被Spring Session搞定了!
下麵是我的github源碼地址:
https://github.com/13babybear/bounter-springsession
歡迎提供你寶貴的意見!