> > Also a related queston. If I don'e use @MessageDriven, and configure a > route using bean:updateService, it doesn't work since <tx:annotation-driven > /> has created a cglib-extended class with a final method with the same > arguments as my handleMessage method. >
This was because I had @Transactional on a class without a interface, and tx:annotation-driven was configured not to proxy classes. Transactions still doesn't work though... :-P -- /Magnus Heino
