其他分享
首页 > 其他分享> > shiro session返回问题

shiro session返回问题

作者:互联网

 

    /**
     * 3.会话管理器
     */
    public DefaultWebSessionManager sessionManager() {
        CustomSessionManager sessionManager = new CustomSessionManager();
        //shiro 的session默认放在cookie中 禁用
        sessionManager.setSessionIdCookieEnabled(false);
        //禁用url 重写 url; shiro请求时默认 jsessionId=id
        sessionManager.setSessionIdUrlRewritingEnabled(false);
        sessionManager.setSessionDAO(redisSessionDAO());
        return sessionManager;
    }

 

标签:返回,CustomSessionManager,false,url,sessionManager,session,shiro
来源: https://www.cnblogs.com/dengying/p/15220747.html