Multiple Choice
Identify the correct statement(s) regarding the following pointcut: execution(@com.springsource.MyCustomAnnotation void *(..) )
A) Spring does not support annotations inside its pointcut expression language
B) This will select join points representing void methods that are annotated by @com.springsource.MyCustomAnnotation
C) This will select join points representing methods that may have a public, protected or default visibility
D) This pointcut will in no situation ever be able to select any join points
Correct Answer:

Verified
Correct Answer:
Verified
Q28: Two beans of type MyBean are defined
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
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 {