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 |
whats the relation ship between LDAP and JNDI?
How is hashset maintained in memory by java ?
When to use the Collection Classes(HashSet, LinkedHashSet, TreeSet....etc) in real time scenario ?
What is deque in the java collections framework? : java collections
i need java 1+ experience resume on java developer kindly send me my mail id:srikanthreddy1.marla@gmail.com
what is jndi?
2. Write a interface "Car" with the following methods void setName(String) String getName() void setColor(String) String getColor() void setModel(long) long getModel()
What are the types of the main implementing classes in the map interfaces? : java collections
In HashSet duplicates are allowed while adding to the HashSet, but while retreiving the object from HashSet is not shown the duplicate values, WHY ?
How to use ANT?
what is the difference between checked and unchecked Exceptions?
What are the different types of ways where you can iterate over a list? : java collections