Multiple Choice
Which of the following statements about Spring @MVC is NOT true (select one)
A) Classes annotated with @Controller annotation can be detected by component scanning and loaded as Spring beans
B) Data can be passed from the controller to the view by use of the special Model parameter
C) Controllers are typically able to delegate to business methods in an application because a reference to a service bean can be injected into the controller
D) The DispatcherServlet, controller beans and other collaborators are all defined and configured in web.xml
Correct Answer:

Verified
Correct Answer:
Verified
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
Q34: public class ClientServiceImpl implements ClientService { @Transactional(propagation=Propagation.REQUIRED)
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
Q40: Which of the following statements best describes