亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何進行springsession同域下單點登錄實現的解析

發布時間:2021-12-17 17:02:14 來源:億速云 閱讀:116 作者:柒染 欄目:編程語言

本篇文章給大家分享的是有關如何進行springsession同域下單點登錄實現的解析,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

Session會話管理

在Web項目開發中,Session會話管理是一個很重要的部分,用于存儲與記錄用戶的狀態或相關的數據;通常情況下session交由容器(tomcat)來負責存儲和管理,但是如果項目部署在多臺tomcat中,則session管理存在很大的問題;

1、多臺tomcat之間無法共享session,比如用戶在tomcat A服務器上已經登錄了,但當負載均衡跳轉到tomcat B時,由于tomcat B服務器并沒有用戶的登錄信息,session就失效了,用戶就退出了登錄;

2、一旦tomcat容器關閉或重啟也會導致session會話失效;因此如果項目部署在多臺tomcat中,就需要解決session共享的問題;

配置文件

pom.xml<dependency>  

<groupId>org.springframework.session</groupId>  

<artifactId>spring-session-data-redis</artifactId>  

<version>1.3.1.RELEASE</version>

</dependency>web.xml  

<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>*.do</url-pattern> 

 </filter-mapping>  

<listener>   

 <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>

  </listener>  

<context-param> 

   <param-name>contextConfigLocation</param-name>  

  <param-value>      classpath:applicationContext.xml    </param-value>  

</context-param>applicationContext.xml  <context:annotation-config/> 

 <!-- 初始化一切spring-session準備,且把springSessionFilter放入IOC --> 

 <bean id="redisHttpSessionConfiguration" class="org.springframework.session.data.redis.config.annotation.web.http.RedisHttpSessionConfiguration">    <property name="maxInactiveIntervalInSeconds" value="300"/>  

</bean>  

<!-- 配置cookie信息-->

  <bean class="org.springframework.session.web.http.DefaultCookieSerializer" id="defaultCookieSerializer">    <property name="cookieName" value="SESSION_NAME"/>   

 <property name="domainName" value="wangjun.com"/>    

<property name="useHttpOnlyCookie" value="true"/>  

  <property name="cookiePath" value="/"/>   

 <property name="cookieMaxAge" value="31536000"/> 

 </bean>  

<!-- 配置redis連接池信息-->  

  <bean id="jedisPoolConfig" class="redis.clients.jedis.JedisPoolConfig">  

  <property name="maxTotal" value="20"/> 

 </bean>  

<!--配置redis連接信息--> 

 <bean id="jedisConnectionFactory" class="org.springframework.data.redis.connection.jedis.JedisConnectionFactory">   

 <property name="hostName" value="127.0.0.1"/>  

  <property name="port" value="6379"/>    

<property name="poolConfig" ref="jedisPoolConfig"/> 

 </bean>

代碼測試

public class SessionServlet extends HttpServlet {   

protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {    this.doGet(request,response);

  }   protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {    String sesssionID = request.getSession().getId();   

 //部署兩份,把這個地方8081改成8080就行了,只是為了區分    response.getWriter().write("8081 Server SessionID"+sesssionID);  }}

以上就是如何進行springsession同域下單點登錄實現的解析,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阳原县| 阿合奇县| 昌图县| 曲阜市| 新丰县| 遂宁市| 建瓯市| 奉化市| 峨边| 宝应县| 油尖旺区| 大余县| 惠水县| 胶州市| 江津市| 渭源县| 泾阳县| 大兴区| 灯塔市| 黄骅市| 泽州县| 互助| 延庆县| 巫溪县| 剑川县| 梁平县| 潍坊市| 沛县| 承德市| 罗定市| 绥棱县| 苗栗县| 双峰县| 四平市| 白玉县| 宁德市| 黄陵县| 吴桥县| 浦城县| 曲靖市| 库尔勒市|