security « Transaction « Spring Q&A





1. Spring Security ACL: NotFoundException from JDBCMutableAclService.createAcl    stackoverflow.com

I've been working on this task for too long to abandon the idea of using Spring Security to achieve it, but I wish that the community will provide with some support ...

2. Wrapping Spring Security custom authentication provider with transaction    stackoverflow.com

In my custom authentication provider, I was able to get the domain object through my Service API, but when I crawled from one domain object to another to get certain value ...

3. JdbcMutableAclService - Transaction must be running    stackoverflow.com

I'm trying to implement spring security acl into a project. After building the main configuration part and creating the according database schema, I'm trying to create some ACEs and let the ...

4. Storing information in HttpSession and UserDetails (Spring Framework), some questions and other possible solutions    stackoverflow.com

I work with Spring Framework 3.0.5 and I develope a web application. Ive got one question regarding the use of HttpSession and UserDetailsImpl-Objects. I need some imformations be stored with a session. ...

5. Business Facade, Hibernate, transactions and security    forum.springsource.org

Business Facade, Hibernate, transactions and security Hi all, my team and I are discovering spring and hibernate and we are very enthusiastic about it. We are trying to define good general ...

6. Combining AOP acegi security with transaction advice    forum.springsource.org

Combining AOP acegi security with transaction advice Hi, Im trying to surround my application layer with both transaction demarcation and AOP based acegi security. I got the transaction demarcation stuff working ...

7. Testing with datasource transactional/security issue?    forum.springsource.org

Testing with datasource transactional/security issue? I have a method I'd like to test. It makes changes to the database by calling a stored procedure by extending the StoredProcedure class. I'm using ...

8. Method level security & Annotated transaction not working together    forum.springsource.org

Method level security & Annotated transaction not working together We have declared method level security using MethodSecurityInterceptor on some of our methods. We also have declared annotation based transaction on those ...

9. Spring security transaction and jpa transaction problems    forum.springsource.org

Nov 25th, 2008, 11:03 AM #1 kenyth View Profile View Forum Posts Private Message Junior Member Join Date May 2008 Posts 12 Spring security transaction and jpa transaction problems We're developing ...





10. Security and Transaction aspect precidence    forum.springsource.org

I am using annotation base Transaction management along with annotated method security on my service methods Code: @Service class MyService { @Secured({"MyRole"}) @Transactional public void doWork() {...} } ...

11. ordering security, transaction and other advices (AOP)    forum.springsource.org

ordering security, transaction and other advices (AOP) Hi, sorry if this question has been asked before: I try to implement method based security with global-method-security: ... ...

12. Spring Security filter chain and declarative transactions    forum.springsource.org

Hi, I have added a filter into the Spring Security filter chain which updates users profile (via Hibernate). I use Commons Attributes to specify transactions. This works good when business methods ...

13. Locking user for 3 unsuccessful attempts in spring security 3.0.2    forum.springsource.org

HI, is there any mechnaism in spring security 3.0.2 which will check no of times user entered wrong userid/passoword. if more that 3 times it does. then is houdl lock the ...

14. How let @Transactional annotation works with Spring Security?    forum.springsource.org

Aug 16th, 2010, 02:00 PM #1 jeffwji View Profile View Forum Posts Private Message Junior Member Join Date Aug 2010 Posts 6 How let @Transactional annotation works with Spring Security? Hi ...