Session通过转byte数组存入redis中

由于目前redis仅支持五大类型数据,经测试发现将session存入redis中读取时会报错不支持此数据类型,但是写入是不报错的。

(背景)本人用shiro做单点登录,session写入redis中,子应用从redis中读取在校验权限。

(现象)网上很多资料都是直接将session转为byte如:

public static byte[] sessionToByte(Session  session){
    ByteArrayOutputStream bo = new ByteArrayOutputStream();
    byte[] bytes = null;
    try {
        ObjectOutputStream oo = new ObjectOutputStream(bo);
        oo.writeObject(session);
        bytes = bo.toByteArray();
    } catch (IOException e) {
        e.printStackTrace();
    }
    return bytes;
}

会报错,说session不是序列化实例,不支持转为byte数组。

解决方案:

本人写了一个是序列话的继承SimpleSession的类,将session转为该类后在进行转byte数组。

(强转会报错)

public class ShiroSession extends SimpleSession implements Serializable {
}

然后将session转为ShiroSession

public ShiroSession ToShiroSession(Session session){
    ShiroSession shiroSession = new ShiroSession();
    shiroSession.setHost(session.getHost());
    Map map = new HashMap<>();
    if(session.getAttributeKeys()!=null&&session.getAttributeKeys().size()>0){
        for(Object obj : session.getAttributeKeys()){
            map.put(obj,session.getAttribute(obj));
        }
    }
    shiroSession.setAttributes(map);
    shiroSession.setId(session.getId());
    return shiroSession;
}
public static byte[] sessionToByte(ShiroSession  session){
    ByteArrayOutputStream bo = new ByteArrayOutputStream();
    byte[] bytes = null;
    try {
        ObjectOutputStream oo = new ObjectOutputStream(bo);
        oo.writeObject(session);
        bytes = bo.toByteArray();
    } catch (IOException e) {
        e.printStackTrace();
    }
    return bytes;
}

 

你可能感兴趣的:(Session通过转byte数组存入redis中)