Which two are required to use transactions in Spring? (Choose two.)

Which two are required to use transactions in Spring? (Choose two.)
A . Add @EnableTransactionManagement to a Java configuration class.
B . Annotate a class, an interface, or individual methods requiring a transaction with the @Transactional annotation.
C . A class must be annotated with @Service and @Transaction.
D . A class requiring a transaction must implement the TransactionInterceptor interface.
E . Write a Spring AOP advice to implement transactional behavior.

Answer: AB

Explanation:

Transactions are units of work that ensure data consistency and integrity by enforcing atomicity, consistency, isolation, and durability (ACID) properties. Spring provides an abstraction layer for transaction management that supports various transaction APIs such as JDBC, JPA, Hibernate, etc.

To use transactions in Spring, we need to do two things:

Enable transaction management by adding @EnableTransactionManagement annotation to a Java configuration class or tx:annotation-driven/ element to an XML configuration file.

Declare transactional boundaries by annotating a class, an interface, or individual methods with the @Transactional annotation. This annotation indicates that the execution of the annotated element should be wrapped in a transaction.

Reference: 5

Reference: https://www.baeldung.com/transaction-configuration-with-jpa-and-spring

Latest 2V0-72.22 Dumps Valid Version with 60 Q&As

Latest And Valid Q&A | Instant Download | Once Fail, Full Refund

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments