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 |
Which java collection class can be used to maintain the entries in the order in which they were last accessed?
What is the Spring2.5 MVC Navigation flow?
Which is the better framework for web applications, struts or spring, and why?
What is java collection? : java collections
Which interface does java.util.hashtable implement?
Which server-side script takes the input from JavaScript, can access the database if it needs to, and processes the data.
How to call the m1() method of Base class in below snippet ? class Base { public void m1() { System.out.println("Base m1 "); } public void m2() { System.out.println("Base m1 "); } } ====================== class Derived extends Base { public void m1() { System.out.println("Derived m1"); } public void m3() { System.out.println("Derived m3"); } public static void main(String[] args) { Base ob=new Derived(); ob.m1(); //System.out.println("Hello World!"+ob.m1()); } }
What are the interfaces in java collections? : java collections
Hi Friends, i have searched in google but not clear. can you give bank example with synchronized keyword
What is the use of the list interface in the java collection? : java collections
What are the different types of collections views being provided by the map interface? : java collections
What are the classes in the java collection framework? : java collections