/**
     * 把用户保存到Cookie
     *
     * @param request
     * @param response
     * @param member
     */
    private void rememberPwdAndUserName(HttpServletRequest request,
            HttpServletResponse response, Member member) {
        Long memberid = member.getMemberId();
        String uuidMDKey = parseKey(memberid);
        // 先验证 此key是否有重复
        boolean isexists = true;
        do {
            Long memberId = (Long) cache.get(uuidMDKey);
            if (null != memberId) {
                uuidMDKey = parseKey(memberid);
            } else {
                isexists = false;
            }
        } while (isexists);

        //add by zp 串session 添加日志
        String SESSIONIDKEY = UrlPrefix.getUrl("cookie.sessionidkey");
        String UUIDMDKEY = UrlPrefix.getUrl("cookie.uuidmdkey");
        String _GA = UrlPrefix.getUrl("cookie.ga");
        Cookie cookies[] = request.getCookies();
        String sessionId = "";
        String uuidMdKey1 = "";
        String _ga = "";
        if (cookies != null && cookies.length > 0) {
            Cookie sCookie = null;
            for (int i = 0; i < cookies.length; i++) {
                sCookie = cookies[i];
                if (sCookie.getName().equals(SESSIONIDKEY)) {
                    sessionId = sCookie.getValue();
                }else if(sCookie.getName().equals(UUIDMDKEY)){
                    uuidMdKey1 = sCookie.getValue();
                }else if(sCookie.getName().equals(_GA)){
                    _ga = sCookie.getValue();
                }
            }
        }
        EcCookie cookie =new EcCookie();
        cookie.setUuidmdKey(uuidMDKey);
        cookie.setSessionId(sessionId);
        cookie.setGaValue(_ga);
        cookie.setCreateTime(DateUtils.getCurrentDateString());
        cookie.setUuidmdKeyOld(uuidMdKey1);
        ecCookieService.saveEcCookie(cookie);
        //add by zp 串session 添加日志

        // 添加memcache 缓存
        cache.put(uuidMDKey, member.getMemberId(), CACHE_SECOND_SESSION);
        Cookie newCookie = new Cookie("uuidMdKey", uuidMDKey);
        newCookie.setMaxAge(MONTH_SECOND);
        newCookie.setPath(request.getContextPath() + "/");
        response.addCookie(newCookie);
    }

将用户信息保存到Cookie中的更多相关文章

  1. 微信开放接口获取用户昵称保存到MySQL中为空白

    微信昵称中包含emoji表情标签,某些标签是使用了4字节编码的UTF8. 而大多数MySQL数据库现在使用的是3字节UTF8编码,这样会导致保存为空,且不会提示失败. 解决方法有2个,一个是升级到My ...

  2. 监听页面中的某个div的滚动事件,并将其滚动距离保存到cookie

    在html中,写一个id为type的div: <div class="type" id="type"></div> css: .type ...

  3. jsonp跨域实现单点登录,跨域传递用户信息以及保存cookie注意事项

    网站A:代码:网站a的login.html页面刷新,使用jsonp方式将信息传递给b.com的login.php中去,只需要在b.com中设置一下跨域以及接收参数,然后存到cookei即可, 注意:网 ...

  4. 个人学习记录1:二维数组保存到cookie后再读取

    二维数组保存到cookie后再读取 var heartsArray = [[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0],[0,0,0,0,0,0,0,0,0,0,0],[0,0, ...

  5. Flask实战第43天:把图片验证码和短信验证码保存到memcached中

    前面我们已经获取到图片验证码和短信验证码,但是我们还没有把它们保存起来.同样的,我们和之前的邮箱验证码一样,保存到memcached中 编辑commom.vews.py .. from utils i ...

  6. 1.scrapy爬取的数据保存到es中

    先建立es的mapping,也就是建立在es中建立一个空的Index,代码如下:执行后就会在es建lagou 这个index.     from datetime import datetime fr ...

  7. Redis使用场景一,查询出的数据保存到Redis中,下次查询的时候直接从Redis中拿到数据。不用和数据库进行交互。

    maven使用: <!--redis jar包--> <dependency> <groupId>redis.clients</groupId> < ...

  8. jQuery切换网页皮肤保存到Cookie实例

    效果体验:http://keleyi.com/keleyi/phtml/jqtexiao/25.htm 以下是源代码: <!DOCTYPE html PUBLIC "-//W3C//D ...

  9. ffmpeg从AVFrame取出yuv数据到保存到char*中

    ffmpeg从AVFrame取出yuv数据到保存到char*中   很多人一直不知道怎么利用ffmpeg从AVFrame取出yuv数据到保存到char*中,下面代码将yuv420p和yuv422p的数 ...

随机推荐

  1. 设置windows窗口ICON 【windows 编程】【API】【原创】

    1. ICON介绍 最近开始接触windows 编程,因此将自己所接触的一些零散的知识进行整理并记录.本文主要介绍了如何更改windows对话框窗口的ICON图标.这里首先介绍一下windows IC ...

  2. 想追赶.Net的脚步?Java面前障碍重重

    待到Java 8面世之时 .Net的进度时钟恐怕已经又走过了两到五年——届时微软做出的调整将使二者差距进一步拉大. 就在几周之前,我详细介绍了Java 8中值得期待的几大主要功能.不过当时我并没有提到 ...

  3. [转]Python中的with…as…

    先说明一个常见问题,文件打开: 1 2 3 4 5 6 7 try:     f = open('xxx')     do something except:     do something fin ...

  4. 88 Merge Sorted Array(归并排序Easy)

    题目意思:num1和num2均为递增数组,对其进行递增排序存到num1中 class Solution { public: void merge(vector<int>& nums ...

  5. phalcon的一些中文手册和帮助文档地址收集

    1:中文官方网站:http://phalconphp.com/zh/ 挺好可以好好看文档 可安装http://bullsoft.org/phalcon-docs/这个去查找,这是个部分中文的手册! P ...

  6. 10:Hello, World!的大小

    总时间限制:  1000ms 内存限制:  65536kB 描述 还记得在上一章里,我们曾经输出过的“Hello, World!”吗? 它虽然不是本章所涉及的基本数据类型的数据,但我们同样可以用siz ...

  7. poj 2782 Bin Packing (贪心+二分)

    F - 贪心+ 二分 Time Limit:3000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu   Description ...

  8. Sleep的问题

    先上全部源码: using System; using System.Threading; namespace MoveServices { public static class MoveWorke ...

  9. Github上最受关注的前端大牛,快来膜拜吧!

    1. Paul Irish Github主页: https://github.com/paulirish 个人主页: http://paulirish.com 维基百科: http://en.wiki ...

  10. Shortest Prefixes

    poj2001:http://poj.org/problem?id=2001 题意:给你一些单词,然后让你寻找每个单词的一个前缀,这个前缀能够唯一表示这个单词,并且是最短的. 题解:直接用trie树来 ...