I have a service class that is annotated with @RooService
. For some reason, my methods inside this service class should not be transactional yet I don't want to move away from @RooService
. I found that there is a definition in @RooService
called "boolean transactional() default true
" that might do the tricks. How do I change this to false?
@RooService(transactional = false)
Read the tutorial on annotations.