Was this problem ever solved (other than by manually invoking the FormAction.initAction() method, which is clearly not the intended use). I'm having exactly the same problem, using Spring webflow...
Type: Posts; User: kenstershiro; Keyword(s):
Was this problem ever solved (other than by manually invoking the FormAction.initAction() method, which is clearly not the intended use). I'm having exactly the same problem, using Spring webflow...
I've tried replacing EhCacheProvider with SingletonEhCacheProvider, but it doesn't seem to make any difference. I still get the Warning
"Creating a new instance of CacheManager using the...
I'm afraid I didn't do much digging, but because the problem was urgent I ended up replacing dbcp with c3po connection pooling, which did the trick. C3PO seems to have more tweaking options, not...
Hi, I'm getting a org.hibernate.transaction.JDBCTransaction error due to the db connection going down once my application session expires.
This has started happening since I upgraded from Spring...
Thanks for the replies, I've just got back to this now. You're right, I shouldn't mix transaction strategies. The problem arose because I was trying to use the same DAO method to restore data that...
Hi
This is a Spring Transaction management problem as much as a Hibernate problem.
I'm using Spring's OpenSessionInViewFilter on my webapp. In my DAO business method I'm loading a series of data...
Thanks Luke, I seem to have resolved this, although I'm still not sure why it worked beforehand.
As you say the url I was invoking was not protected, so I've added a general rule to the...
Hi Luke
AuthenticationInjectionFilter is a custom Filter class which inserts Authentication and User info into the Request object in its doFilter(). Unfortunately this is a project I've inherited...
Hi
I'm using Acegi Security 1.0.0 RC2 with Spring 1.2.8.
My application authentication is all working fine once I login, but I've noticed that something that I've changed recently has...
See the post http://forum.springframework.org/showthread.php?t=21252 - it seems like a good way. You could set some parameter that gets checked in your (overridden) getInitialPage() method, to go...
Have you seen this thread:
http://forum.springframework.org/showthread.php?t=31999
If you can't get the redirect to work, you could always add the objects to the session instead, but they seem to...
Hi,
Not sure if you can use the errors Object when you redirect to another page, as the previous reply says you lose your request parameters. The 'normal' flow on form exception handling is not...
Thanks Costin, my initial reply was going to be 'I've already done that', but going back through the FAQs again I've come up with the solution of setting cascade="none" on the Set in my Hibernate...
Hi
I'm running Spring 1.2.6 and Hibernate 3.0.5 (with a MySQL 5.0 db)
I have a problem with my domain objects in a SimpleFormController getting out of synch with the same objects in my...