I use @Transaction to my service classes this way all methods will be wrapped with transaction required by default , some of my methods does not need transaction for these methods I annotated with
is this right ?Code:@Transactional(readOnly=true, propagation=Propagation.SUPPORTS)


Reply With Quote