Multiple Choice
Which statement is NOT a characteristic of Spring's PlatformTransactionManager base interface (select one)
A) When declaring a PlatformTransactionManager implementation inside Spring configuration: as a requirement, the bean id should be "transactionManager"
B) The PlatformTransactionManager interface abstracts the differences between local and JTA transactions
C) There are various implementations of JTA transaction managers for different Java EE containers
D) PlatformTransactionManager is used in both declarative and programmatic transaction management
Correct Answer:

Verified
Correct Answer:
Verified
Q34: public class ClientServiceImpl implements ClientService { @Transactional(propagation=Propagation.REQUIRED)
Q35: Which of the following statements about Spring
Q36: Using Spring AOP, which of the following
Q37: What is the primary purpose of bean
Q38: @Transactional(timeout=60) public class ClientServiceImpl implements ClientService {
Q40: Which of the following statements best describes
Q41: Consider that all Spring beans have been
Q42: To register for a bean destruction callback,
Q43: Which statement is NOT true concerning Spring's
Q44: Which of the following statements is NOT