florinmarcus wrote:
For my Service Object I didn't had an inteterface to implement.
FYI, you don't need to implement an interface for proxying: TransactionProxyFactoryBean has a property "proxyInterfacesOnly" that can be set to false for proxying the full class, no matter if it implements a business interface or not. This is not the default as accessing business services via interfaces only is recommended. Furthermore, proxying the full class requires CGLIB on the class path; proxying an interface just requires J2SE 1.3.
Juergen