Redis實(shí)現(xiàn)Session共享
這幾天在做session共享這么一個(gè)小模塊,也查了好多資料,給我的感覺,就是太亂了,一直找不到我想要的東西,幾乎全部實(shí)現(xiàn)方法都與我的想法不一樣,在這里,我總結(jié)一下自己是如何用Redis實(shí)現(xiàn)session共享的,方便自己以后查詢,也希望能給有這方面需求的朋友一些幫助。
創(chuàng)新互聯(lián)建站專注于樟樹網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供樟樹營銷型網(wǎng)站建設(shè),樟樹網(wǎng)站制作、樟樹網(wǎng)頁設(shè)計(jì)、樟樹網(wǎng)站官網(wǎng)定制、小程序定制開發(fā)服務(wù),打造樟樹網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供樟樹網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。相關(guān)專題推薦:php session (包含圖文、視頻、案例)
先說一下我的開發(fā)環(huán)境:nginx、redis、tomcat,用moven構(gòu)建項(xiàng)目,jetty服務(wù)器運(yùn)行,所以在這里,下面也會(huì)涉及一下如何用maven打war包,部署在tomcat上運(yùn)行。
redis是一個(gè)key-value數(shù)據(jù)庫,存值取值,全靠這個(gè)key了,這里啰嗦一句,因?yàn)樵瓌?chuàng),專業(yè)的介紹我就不粘貼了,想了解的官方介紹的可以自行search.
pom.xml中配置:
redis.clients jedis 2.8.1 org.springframework.data spring-data-redis 1.7.2.RELEASE
aplicationContext-redis.xml中配置
配置完畢后,開始代碼實(shí)現(xiàn):
在LoginController里:
第一步,引入RedisTemplate
@Autowired @Qualifier("writeRedisTemplate") private StringRedisTemplate writeTemplate;
這里只需要引入writeRedisTemplate即可,在登陸的時(shí)候,只負(fù)責(zé)寫,只有在再次刷新的時(shí)候,經(jīng)過過濾器,才需要讀
第二步,正常登陸流程,登陸成功之后,request還要保存session信息
第三步,設(shè)置cookie值,把作為保存userSession信息在redis中的key值存入cookie,刷新瀏覽器的時(shí)候,過濾器可以從cookie中取到key
值,進(jìn)而去redis取對(duì)應(yīng)的value值,即userSession
String domain = request.getServerName(); String cookieId=MD5Util.MD5Encode("uasLoginer", "UTF-8"); //生成token,用作session在redis存儲(chǔ)中的key值 StringredisSessionKey= UUID.randomUUID().toString(); Cookie uasLoginer = new Cookie(cookieId, redisSessionKey); if (domain.startsWith("uas.")) {uasLoginer.setDomain(domain.substring(4,domain.length())); }else {uasLoginer.setDomain(domain); } uasLoginer.setMaxAge(60000); uasLoginer.setPath("/"); response.addCookie(uasLoginer);
這里cookie跨域setDomain和setPath設(shè)置
第四步,把userSession
信息存入redis中
RedisTemplate中寫入redis的值要為String類型,需要把userSession對(duì)象轉(zhuǎn)成Json字符串
userSessionString = JSON.toJSONString(userSession);
在轉(zhuǎn)Json的時(shí)候,遇到問題,導(dǎo)入import com.alibaba.fastjson.JSON;一直失敗,發(fā)現(xiàn)pom中沒有依賴Json的關(guān)系,如果有遇到相同的問題,可以檢查下在pom.xml中是否有關(guān)于json的依賴關(guān)系,沒的話,在pom.xml中導(dǎo)入json的依賴關(guān)系,如下:
net.sf.json-lib json-lib 2.3 jdk15
寫入redis的代碼如下:
writeTemplate.opsForHash().put(UasContants.REDIS_USER_SESSION_KEY+"_"+redisSessionKey,redisSessionKey, userSessionString); writeTemplate.expire(UasContants.REDIS_USER_SESSION_KEY+"_"+redisSessionKey, 1800L, TimeUnit.SECONDS);//設(shè)置redis中值的有效期
完成這一操作,用戶的session信息已經(jīng)存入到redis中,可在redis中查看是否存入。
第五步:進(jìn)入頁面后,刷新頁面,請(qǐng)求會(huì)經(jīng)過過濾器,在Filter.Java中讀取redis的值并進(jìn)行一些處理
在過濾器這里,就無法通過注解的方式引入redisTemplate,可以通過如下的方式引入:
BeanFactory beans = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext()); StringRedisTemplate readTemplate = (StringRedisTemplate) beans.getBean("readRedisTemplate"); StringRedisTemplate writeTemplate = (StringRedisTemplate) beans.getBean("writeRedisTemplate");
過濾器從cookie中取出redis的key值,用readTemplate讀出value值
String cookid=MD5Util.MD5Encode("uasLoginer", "UTF-8"); Cookie[] cookies = req.getCookies(); String redisSessionKey = ""; if(cookies != null){for (Cookie cookie : cookies) { if(cookie.getName().equals(cookid)){ redisSessionKey = cookie.getValue() ; }} } UserSession userSession = null; String userSessionString = (String) readTemplate.boundHashOps(UasContants.REDIS_USER_SESSION_KEY+"_"+redisSessionKey).get(redisSessionKey); if(null != userSessionString ){@SuppressWarnings("static-access")JSONObject obj = new JSONObject().fromObject(userSessionString);//將json字符串轉(zhuǎn)換為json對(duì)象userSession = (UserSession)JSONObject.toBean(obj,UserSession.class);writeTemplate.expire(UasContants.REDIS_USER_SESSION_KEY+"_"+redisSessionKey, 1800L, TimeUnit.SECONDS);request.getSession().setAttribute(UasContants.USER_SESSION, userSession); } if (userSession != null) {chain.doFilter(req, res);return; }else {res.sendRedirect(UasContants.LOGIN_URL);return; }
在這里,另外附上關(guān)于web.xml關(guān)于LoginFilter的配置,有需要的可以參考下:
org.springframework.web.context.ContextLoaderListener loginFilter com.sfbest.uas.filter.LoginFilter excludePaths /login,/user/login,/user/auth loginFilter /*
按照上面的配置,就可以用redis實(shí)現(xiàn)session共享的功能,但我在開發(fā)的時(shí)候,遇到一個(gè)蛋疼的問題,在測(cè)試環(huán)境上,
把項(xiàng)目部署在兩臺(tái)tomcat
服務(wù)器上的時(shí)候,cookie里一直存不進(jìn)去redis的key值,單臺(tái)可以存進(jìn)去,經(jīng)過長期的檢測(cè),
終于發(fā)現(xiàn)是nginx配置出的問題,引以為戒,深深的陰影。下面我貼出我正常運(yùn)行時(shí)nginx的配置代碼
upstream uassessiontest.d.com { server 10.103.16.226:8088; server 10.103.16.226:8089; } server { log_format sf_uastest '$remote_addr - $remote_user [$time_local] "$request" ' '$status $body_bytes_sent "$http_referer" ' '"$http_user_agent" $http_cookie'; listen 80; server_name uassessiontest.d.com; access_log /var/log/nginx/uassessiontest.log sf_uastest; location / { rewrite ^/$ /uas/ break; proxy_pass http://uassessiontest.d.com; } }
紅色的為當(dāng)初少配的部分,這些部分是的作用是往瀏覽器端寫入cookie值。
相關(guān)學(xué)習(xí)推薦:redis視頻教程