What is the Spring2.5 MVC Navigation flow?
Answer / suresh royal
----->HandlerMapping class
|
client---->DispatcherServlet---->Controller bean class
| |
| ----->ViewResolver bean class
|
^
resp<----View
* when we send the req front controller of spring MVC ie DispachterServlet takes that req and send to HanlerMapping.
* HandlerMapping bean wiil search in Sprin confi file for the appropriate controller bean so dispatcher servlet transfer the req to controller bean .
* this controller bean executes the b.Logic with returns ModelAndView object
* finnally D.S communicates with ViewResolver for selecting view of response and send the resp to client browser.
Is This Answer Correct ? | 2 Yes | 0 No |
What are the different types of ways where you can iterate over a list? : java collections
Explain JSP life cycle?
What is a constructor?
I have include a jsp page by using <jsp:include page="/.../xyz.jsp"/> The thing is that the xyz.jsp page has its submit button.When i click on that button the whole main page get refreshed.But i want to refresh only the xyz.jsp page.How could i achive it so that i can only refresh the xyz.jsp not the main page page?
What is the use of log4j and how to make use of that in a application?
What is java collection? : java collections
Which is the better framework for web applications, struts or spring, and why?
In HashSet duplicates are allowed while adding to the HashSet, but while retreiving the object from HashSet is not shown the duplicate values, WHY ?
lll
what is difference between business deligate and session facade ?
who will give req's to u?. how they send req's to u? . what design documents contains?. when bugs raised on other developer code how to report to them?.(throgh mail or ........). how to retrive 100 recods from dao layer to presentation layer.using which collection?. what is sequence diagram.?.
Explain the OOPS concept in Realtime Scenarion ? Take example as CAR. Please explain indetail ?