Hi, I have a question regarding rolling back Spring transactions using aop definitions.
If I call service.save(), and save() throws a RuntimeException then everything works fine - the transaction is successfully rolled back.
However if I call service.test(), and all
test() does is call save(), then the transaction never gets rolled back.
Thoughts?