添加download readonly

This commit is contained in:
wenc000 2020-06-17 09:23:31 +08:00
parent 2a7bde435c
commit 437add4d9f

View File

@ -63,6 +63,7 @@ public class TransactionConfig {
source.addTransactionalMethod("list*", readOnly);
source.addTransactionalMethod("count*", readOnly);
source.addTransactionalMethod("is*", readOnly);
source.addTransactionalMethod("download*", readOnly);
return new TransactionInterceptor(transactionManager, source);
}