You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shiro.apache.org by "Jared Bunting (JIRA)" <ji...@apache.org> on 2011/08/02 03:54:27 UTC

[jira] [Commented] (SHIRO-297) Setting sessionMode to native kills any SessionManager already configured

    [ https://issues.apache.org/jira/browse/SHIRO-297?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13075995#comment-13075995 ] 

Jared Bunting commented on SHIRO-297:
-------------------------------------

The "sessionMode" property of DefaultWebSecurityManager has been deprecated in SHIRO-312.  The filter logic has also been changed so that the preferred solution to this is to simply not set "sessionMode".

> Setting sessionMode to native kills any SessionManager already configured
> -------------------------------------------------------------------------
>
>                 Key: SHIRO-297
>                 URL: https://issues.apache.org/jira/browse/SHIRO-297
>             Project: Shiro
>          Issue Type: Bug
>    Affects Versions: 1.0.0, 1.1.0
>            Reporter: Jason Erickson
>
> I just got done working through an issue trying to get single sign-on working with EhCacheManager, following some examples I found on the mailing list (except I was using Spring configuration).  It wasn't working for me at first with this: 
> {code:xml}
> <bean id="securityManager" 
>   class="org.apache.shiro.web.mgt.DefaultWebSecurityManager"> 
>      <property name="realm" ref="factorlabRealm" /> 
>      <property name="subjectFactory" ref="factorlabSubjectFactory" /> 
>      <property name="cacheManager" ref="ssoCacheManager" /> 
>      <property name="sessionManager" ref="sessionManager" /> 
>      <property name="sessionMode" value="native" /> 
> </bean> 
> {code}
>  
> After lots of debugging, I got it to work with this: 
>  
>  
> <bean id="securityManager" 
>   class="org.apache.shiro.web.mgt.DefaultWebSecurityManager"> 
>     <property name="sessionMode" value="native" /> 
>     <property name="realm" ref="factorlabRealm" /> 
>     <property name="subjectFactory" ref="factorlabSubjectFactory" /> 
>     <property name="cacheManager" ref="ssoCacheManager" /> 
>     <property name="sessionManager" ref="sessionManager" /> 
> </bean> 
>  
>  
> The difference is moving the sessionMode to earlier in the property list, because the setter for sessionMode was replacing my configured 
> sessionManager with a new DefaultWebSessionManager.   
> This seems pretty fragile.

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira