首页 > 代码库 > 细说shiro之六:session管理

细说shiro之六:session管理

技术分享
官网:https://shiro.apache.org/

 - org.apache.shiro.session.Session
    - org.apache.shiro.session.mgt.DelegatingSession
    - org.apache.shiro.web.session.HttpServletSession
    - org.apache.shiro.session.ProxiedSession
        - org.apache.shiro.session.mgt.ImmutableProxiedSession
        - org.apache.shiro.subject.support.DelegatingSubject$StoppingAwareProxiedSession
    - org.apache.shiro.session.mgt.ValidatingSession
        - org.apache.shiro.session.mgt.SimpleSession

shiro中的session都是通过SecurityManager创建,所以在不同的环境配置不同的SecurityManager实现。
技术分享   
整理Shiro Session实现原理
Q: 如何与JAVA容器的Session整合?
A: 在web容器环境下,明确指定相应的session实现。

 

细说shiro之六:session管理