We have an existing web application (spring/jsp/hibernate) and have recently introduced spring batch into this application.
I have downloaded the spring batch admin sample code and have been...
Type: Posts; User: jtowell; Keyword(s):
We have an existing web application (spring/jsp/hibernate) and have recently introduced spring batch into this application.
I have downloaded the spring batch admin sample code and have been...
Or rather does having UserDetails mutable allow this scenario to happen? :/
We had something similar a while back see this thread
http://forum.springsource.org/showthread.php?t=61241
Luke or someone else, does not having UserDetails immutable allow this scenario to...
Is your UserDetails immutable? We are investigating a similar problem. I think Spring caches your user details, so maybe it's possible spring is sharing the userdetails among sessions?
I am not setting the SecurityContextHolder strategy specifically so I assume the default is Thread Local. Thats what it looks to be from doc.
I was hoping someone had seen something similar which...
We have seen the *scary* scenario happen a couple times when testing our application. Please let me know how this could possibly be happening.
1) User 1 is logged in.
2) User 2 logs in (password...
I just upgraded to 2.5.5 and my exceptions don't seem to be mapped to views anymore. They just bubble up and display in the browser with a 500 error. Did something change here?
I was upgrading to spring-security today from acegi. I usually store my GrantedAuthorities as Java 5 enums, to me this is perfect use case for enum.
It seems in spring-security I cannot do this...
I am using acegi-security-1.0.5, and trying to get the following to work (per reference documentation). However I don't have a SecurityAnnotationAttributes class? Has this been replaced by...
bump? (10 characters)
We were thinking of using acegi ACL to solve this problem. Where the dynamic group/role would stay the granted authority and be mapped to the Sid. The permission area is a java enum...
Hey all,
I am trying to get acegi 1.0.3 ACL working with PostgreSQL. I have run into a problem when querying for existing ACE's. Calling the
public Acl readAclById(ObjectIdentity object,...
bump bump bump
If I replace SessionMapLocator with my own implementation either memory or DB, will I be effectively removing the webflows dependance on Session? Or am I in the wrong place?
Thanks,
-John...