|
@@ -40,15 +40,15 @@ applications:
|
|
<br>
|
|
<br>
|
|
and change:<br>
|
|
and change:<br>
|
|
<code>
|
|
<code>
|
|
- <bean id="httpSessionContextIntegrationFilter" class="net.sf.acegisecurity.context.HttpSessionContextIntegrationFilter"><br>
|
|
|
|
- <property name="context"><value>net.sf.acegisecurity.context.security.SecureContextImpl</value></property><br>
|
|
|
|
- </bean><br>
|
|
|
|
|
|
+ <bean id="httpSessionContextIntegrationFilter" class="net.sf.acegisecurity.context.HttpSessionContextIntegrationFilter"><br>
|
|
|
|
+ <property name="context"><value>net.sf.acegisecurity.context.security.SecureContextImpl</value></property><br>
|
|
|
|
+ </bean><br>
|
|
</code>
|
|
</code>
|
|
to:<br>
|
|
to:<br>
|
|
<code>
|
|
<code>
|
|
- <bean id="httpSessionContextIntegrationFilter" class="net.sf.acegisecurity.context.HttpSessionContextIntegrationFilter"><br>
|
|
|
|
- <property name="context"><value>net.sf.acegisecurity.context.SecurityContextImpl</value></property><br>
|
|
|
|
- </bean><br>
|
|
|
|
|
|
+ <bean id="httpSessionContextIntegrationFilter" class="net.sf.acegisecurity.context.HttpSessionContextIntegrationFilter"><br>
|
|
|
|
+ <property name="context"><value>net.sf.acegisecurity.context.SecurityContextImpl</value></property><br>
|
|
|
|
+ </bean><br>
|
|
</code>
|
|
</code>
|
|
<br>
|
|
<br>
|
|
|
|
|
|
@@ -74,16 +74,27 @@ applications:
|
|
<br>
|
|
<br>
|
|
For example, change:<br>
|
|
For example, change:<br>
|
|
<code>
|
|
<code>
|
|
- <bean id="loggerListener" class="net.sf.acegisecurity.providers.dao.event.LoggerListener"/><br>
|
|
|
|
|
|
+ <bean id="loggerListener" class="net.sf.acegisecurity.providers.dao.event.LoggerListener"/><br>
|
|
</code>
|
|
</code>
|
|
to:<br>
|
|
to:<br>
|
|
<code>
|
|
<code>
|
|
- <bean id="loggerListener" class="net.sf.acegisecurity.providers.dao.event.authorization.LoggerListener"/>
|
|
|
|
|
|
+ <bean id="loggerListener" class="net.sf.acegisecurity.event.authentication.LoggerListener"/>
|
|
</code><br><br>
|
|
</code><br><br>
|
|
</li>
|
|
</li>
|
|
|
|
|
|
- <li>Users of the <code><authz:authentication></code> JSP tag will generally need to set the <code>operation</code>
|
|
|
|
- property equal to "username", as reflection is now used to retrieve the property displayed.</li>
|
|
|
|
|
|
+ <li>Users of the <code><authz:authentication></code> JSP tag will generally need to set the <code>operation</code>
|
|
|
|
+ property equal to "username", as reflection is now used to retrieve the property displayed.<br><br></li>
|
|
|
|
+
|
|
|
|
+ <li>
|
|
|
|
+ Users of net.sf.acegisecurity.wrapper.ContextHolderAwareRequestFilter should note that it has been
|
|
|
|
+ renamed to net.sf.acegisecurity.wrapper.SecurityContextHolderAwareRequestFilter.<br><br>
|
|
|
|
+ </li>
|
|
|
|
+
|
|
|
|
+ <li>
|
|
|
|
+ The concurrent session support handling has changed. Please refer to the Reference Guide to
|
|
|
|
+ review the new configuration requirements.<br><br>
|
|
|
|
+ </li>
|
|
|
|
+
|
|
|
|
|
|
</ul>
|
|
</ul>
|
|
|
|
|