whipshaw,
Thanks so much for the help. Problem solved.
The example code was really helpful.
calvin
Type: Posts; User: calvin; Keyword(s):
whipshaw,
Thanks so much for the help. Problem solved.
The example code was really helpful.
calvin
How does one access model data from a Freemarker template?
I.e., I can access a command field as follows:
[@spring.bind 'command.query'/]
Query was: ${spring.status.value}
But I can't...
I'm trying to get a quick sample app to authenticate against ldap or another provider, in this case, the in-memory dao provider.
<bean id="authenticationManager"...
Something like the following is what I had, though your needs might be different (might not want lazy-init set to true, might not use JTA, etc):
<bean id="dependencyInjectionInterceptor"...
First, let me apologize for the length of this post, but I thought that giving detailed information was the only way anybody might be able to help me. This actually is a very simplified test case.
...
Got the update from CVS and verified that I'm back in Spring nirvana again.
Thanks very much for taking care of this so quickly.
Thanks, Rob. That's great news. I'll be watching for the commit in CVS. If you are able to update this thread when you commit, that would be wonderful, as I'll get an email notification and can build...
The problem was apparently that HSQLDB does not support XA transactions. I had expected based on something that I read that since my transaction involved only 1 datasource, it would fallback and do a...
I've used a HotSwappableTargetSource successfully since before 1.1.1, but encounter a problem upon upgrading to Spring 1.1.2 in order to fix another issue.
My application context for the relevant...
I'm having trouble getting transactions working correctly in a simple test case. I've tried declaratively, and am now trying to get it working programmatically using the TransactionTemplate and also...
Ah, that makes sense now. After changing autowire to 0 and defining the prototypes in managedClassNamesToPrototypeNames, it works great.
Thanks...
Everything appears to be being wired up correctly for me using the three new classes from the sandbox with 1.1.1, except that my Hibernate persisted object does not get its setApplicationContext...
I would like to use the declarative transaction management abililities of TransactionProxyFactoryBean in conjunction with JTATransactionManager and JOTM.
My problem is that I can't wire-up the...