Change SecurityContextHolder to ThreadLocal due to IBM JDK 1.3 issues as described at http://tinyurl.com/8zhka and reported by Scott McCrory on acegisecurity-developer 8 November 2005.
This commit is contained in:
@@ -35,13 +35,13 @@ import org.springframework.util.Assert;
|
||||
* @author Ben Alex
|
||||
* @version $Id$
|
||||
*
|
||||
* @see java.lang.InheritableThreadLocal
|
||||
* @see java.lang.ThreadLocal
|
||||
* @see net.sf.acegisecurity.context.HttpSessionContextIntegrationFilter
|
||||
*/
|
||||
public class SecurityContextHolder {
|
||||
//~ Static fields/initializers =============================================
|
||||
|
||||
private static InheritableThreadLocal contextHolder = new InheritableThreadLocal();
|
||||
private static ThreadLocal contextHolder = new ThreadLocal();
|
||||
|
||||
//~ Methods ================================================================
|
||||
|
||||
|
||||
Reference in New Issue
Block a user