Reputation: 85
If I change the default value of Transaction to @Transactional(propagation = Propagation.SUPPORTS)
, will the other attributes loose their default values? Do I need to explicitly define the remaining attributes to their default values?
Upvotes: 0
Views: 97
Reputation: 20323
No, all other default values will remain intact as it is, no change.
Upvotes: 2