i know this thread is a bit old, but i recently ran into a similar problem that i was able to fix, so i'm going to add some more detail here in case anyone comes across this in the future.
if you...
Type: Posts; User: aburgel; Keyword(s):
i know this thread is a bit old, but i recently ran into a similar problem that i was able to fix, so i'm going to add some more detail here in case anyone comes across this in the future.
if you...
i converted an app that i inherited from jdbc to hibernate, and i am in the process of considering whether to convert that same app from struts to spring mvc.
hibernate was a huge win for us... we...
the code above mostly works (there's a few typos, so it won't compile directly). and it could even be refactored to work with any nested exception.
but there's another issue somewhat related...
not sure if that would do it... you'd want to plug back into the exception dispatcher... probably more something like this. i copied this from struts RequestProcessor... i haven't tested it yet, its...
hi,
i'm converting a struts app to webflow. i used to rely on struts's exception handlers to catch certain exceptions from my service layer. but now these are caught by webflow and wrapped in an...
nevermind...
i had a configuration issue and i didn't see what BindingAwarePropertyUtils was doing.
very clever stuff :-)
thanks.
hi,
i've been playing around with adding Web Flow to an existing struts app. i have a form object thats coming out of the database.
I need some way to bind the form object back to the...
I agree, a transactional database is high on my TODO list.
But I don't think I agree with you about how FlushMode works. At least in the case that I'm dealing with, if FlushMode.AUTO is set with...
Hi,
As far as I can tell, the default behavior of HibernateTransactionManager with OpenSessionInViewFilter is that outside of the transaction the FlushMode is NEVER, then once you enter the...
Hi,
Looks like some of this stuff is still in CVS, like AbstractProcessingFilter.credentialsExpiredFailureUrl.
What would be useful for me is if RememberMeProcessingFilter also extended...
Hi,
I use UserDetails.isCredentialsNonExpired(), which causes a CredentialsExpiredException, to force the user to change their passwords when they expire. I have a custom...
Hi,
I'm trying to extend my app to support expiring of passwords. It seems the most clear cut way is to throw a CredentialsExpiredException from my AuthenticationManager and then catch the...
oops, typo...
i meant:
Map beans = BeanFactoryUtils.beansOfTypeIncludingAncestors(ctx, targetClass, true, true);
it should be plural 'beans', not singular 'bean'
Hi,
I've come across a minor compatibility issue in FilterToBeanProxy and HierachicalBeanFactory. I'm posting in case anyone else runs into this issue, also its possible to fix this issue in the...
I'll answer my own question.
It is possible to use Container Adapters and SecurityEnforcementFilter together. For it to make sense, all the URLs protected by SecurityEnforcementFilter should be...
Thanks for the information.
I've thought about trying CAS, but at this point, it seems way too complicated for the simple case that I'm trying to solve. (2 web apps: 1 mostly dynamic in a .war, 1...
Hi,
I need to use container-managed authentication (need single sign-on for multiple webapps in the same container). But I'm a little confused as to how this works.
What I'd like to be able to...