Which statements are true about DispatcherServlet ?
Which statements are true about WebApplicationContext ?
Which of the following controller combines multiple request-handling methods into one controller ?
'https://localhost:8080/testing.view' will result in the method testing(HttpServletRequest,HttpServletResponse) being invoked.
Which is the correct view resolver for this?
'/index/welcome.html=doIt' and a request to /index/welcome.html comes in, the doIt(HttpServletRequest,HttpServletResponse) method will be invoked.
Which of the following controller provide a way to interact with data objects and dynamically bind parameters from the HttpServletRequest to the data object specified?
Which of the following is not a view resolver?
@RequestParam is useful for binding query parameters to method parameters where the names don't match.