VMware vRealize Automation 8.x (2022) — Question 37
Which two options are valid optional attributes for Spring’s @Transactional annotation? (Choose two.)
Answer options
- A. isolation
- B. writeOnly
- C. nestedTransaction
- D. readWrite
- E. propagation
Correct answer: A, E
Explanation
The correct answers are A and E because 'isolation' and 'propagation' are recognized attributes that define transaction behavior in Spring. The options 'writeOnly' and 'nestedTransaction' are not valid attributes for the @Transactional annotation, and 'readWrite' is not an attribute but rather a transaction definition that can be derived from the correct attributes.