Public Class ClientServiceImpl Implements ClientService { @Transactional(propagation=Propagation
Multiple Choice
public class ClientServiceImpl implements ClientService { @Transactional(propagation=Propagation.REQUIRED) public void update1() { update2() ; } @Transactional(propagation=Propagation.REQUIRES_NEW) public void update2() { // ... } You are using transactions with Spring AOP. What is happening when the update1 method is called? (Select one)
A) There is only one transaction because the call to update2() is internal (it does not go through the proxy)
B) There is only one transaction because REQUIRES_NEW runs into the active transaction if one already exists
C) There are 2 transactions because REQUIRES_NEW always runs in a new transaction
Correct Answer:

Verified
Correct Answer:
Verified
Q29: Which of the following statements defines an
Q30: Given an ApplicationContext containing multiple bean definitions
Q31: Which of the following is NOT true
Q32: Which of the following statements is NOT
Q33: Identify the correct statement(s) regarding the following
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 {
Q39: Which statement is NOT a characteristic of