Has anyone had any experience with Spring transactions (class-level, with proxy, annotation-driven) not getting started in a Groovy Class? I’ve been struggling with an unexplained LazyInitialization exception noticed that stacktrace does not include a call to start the transaction. Sounds crazy but I have to wonder whether Groovy picks up on the Transactional annotation.
Has anyone had any experience with Spring transactions (class-level, with proxy, annotation-driven) not getting
Share
Actually I found the source of the problem. From the Spring documentation (i added in emphasis):
My problem was that I was using class-based proxies.