After debugging some more I finally found the problem:
As you may have seen in the stacktrace I am using org.springframework.security.acls.AclPermissionCacheOptimizer. The implementation of the...
Type: Posts; User: tangomann; Keyword(s):
After debugging some more I finally found the problem:
As you may have seen in the stacktrace I am using org.springframework.security.acls.AclPermissionCacheOptimizer. The implementation of the...
Hi, I am quite new to Spring Security and ACL. However I managed to setup some basic authorisation in my app. Now I am stuck...
I am having some domain objects "module" in my application. A list...
Just to let you know: It was a hibernate bug.
See http://opensource.atlassian.com/projects/hibernate/browse/HHH-2470
Applied the patch and the system in now running for over 2 weeks without...
Thank you for your answer. However I am having some questions:
We were encountering some problems (which I cannot remeber to be honest) when we were not releasing the session in our DAO. If we...
Yes, UserService = UserManagementService. I am trying to simplyfy the example and made an mistake there. The tx:advice applies for this service.
Yes, the job is a batchjob loading lots of entities...
Ah, ok. The quartz stuff is really simple:
SchedulerFactory schedFact = new org.quartz.impl.StdSchedulerFactory();
sched = schedFact.getScheduler();
sched.start();
Trigger...
Here is my configuration (concerning transaction management):
<aop:config>
<aop:pointcut id="defaultServiceOperation"
expression="execution(*...
I have a problem with an OutOfMemory in an Struts-Spring-Hibernate Application. To an existing web-application I added some regular background tasks. Not knowing of the built in support of spring of...