Hi,
i noticed an error in the documentation, but did not find a proper place to post it (is there a bugtracker? Apparently not on the sourceforge page...).
On http://www.springframework.org/docs/...ansaction.html, under 7.3.2 "Using the PlatformTransactionManager", the example says
which should beCode:TransactionStatus status = transactionManager.getTransactionDefinition(def);
Just a minor error, but might be confusing at first for those who try the examples copy'n'paste-wise... ;-)Code:TransactionStatus status = transactionManager.getTransaction(def);
Sebastian


