Does @Transactional work on a Wicket Component's methods?

2009-06-16 Thread Ben Hutchison
Hi all, We are using the Spring @Transactional annotation on a method of a Wicket Panel, and it does not appear to be doing anything. From some reading around, I had kind of assumed that @Transactional would work in Wicket components, but Im now wondering whether it does. (We've gone

Re: Does @Transactional work on a Wicket Component's methods?

2009-06-16 Thread Martijn Dashorst
You'll need the AspectJ AOP support for this. Wicket components aren't Spring beans. Martijn On Tue, Jun 16, 2009 at 10:09 AM, Ben Hutchisonb...@ibsglobalweb.com wrote: Hi all, We are using the Spring @Transactional annotation on a method of a Wicket Panel, and it does not appear to be doing

Re: Does @Transactional work on a Wicket Component's methods?

2009-06-16 Thread Peter Ertl
consider using salve :-) http://code.google.com/p/salve/ http://code.google.com/p/salve/wiki/WhySalve http://code.google.com/p/salve/wiki/SpringTransactionManager http://code.google.com/p/salve/wiki/AnnotatedTransactionManager Am 16.06.2009 um 10:30 schrieb Martijn Dashorst: You'll need the