Session Management | Apache Shiro - 0 views
shiro.apache.org/session-management.html
java security authentication authorization ApacheShiro SessionManagement session

-
available in any application,
-
even if you deploy your application in a Servlet or EJB container, there are still compelling reasons to use Shiro's Session support instead of the container's
- ...40 more annotations...
-
allows you to easily configure all session components with any JavaBeans-compatible configuration format, like JSON, YAML
-
If the Subject already has a Session, the boolean argument is ignored and the Session is returned immediately
-
If the Subject does not yet have a Session and the create boolean argument is false, a new session will not be created and null is returned.
-
HttpServletRequest.getSession(boolean create) method: