Correct Answer: @Componet, @Controller, @Service, and @Repository
Explanation:
Note: This Question is unanswered, help us to find answer for this one
Spring Framework Skill Assessment
Your Skill Level: Poor
Retake Quizzes to improve it
More Spring Framework MCQ Questions
By default when singleton bean is instantiated?
How can you instantiate BeanFactory?
To enable MVC Java config, @EnableWebMvc should be used with which of following annotation?
Which of these is NOT a Spring Bean Scope?
Imagine I have multiple classes that have similar properties; what's a good way of handling this situation without copy/pasting the bean definitions?
Which of the following is the most commonly used view resolver for integrating JSPs with Spring?
Which one of the following is NOT true about the followng code: @Controller @RequestMapping("/reservationForm") @SessionAttributes("reservation") public class ReservationFormController { ... @RequestMapping(method = RequestMethod.POST) public String submitForm(@ModelAttribute("reservation") Reservation reservation, BindingResult result) { ... return "redirect:reservationSuccess"; } ... }
Which one of the following is NOT true about Spring MVC View resolver
Which of the following statements is NOT true when defining the <intercept-url> elements in security.xml?
Which one of the following is NOT true about HibernateDaoSupport Class