• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Flow of request in Spring Frame work

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi.
I am new to spring frame work.
I just want to know the flow of the request in Spring.
I am explaining the flow which I understod.

  • [list]First when ever we need a new page some xx.htm
  • It will search this in application-servlet.xml under urlMaping bean.
  • From there it will move to the corresponding bean and get the correct controller of that and executes the handleRequest method of the controller.
  • This method will return a model which is again searched in the application-servlet.xml for the viewResolver bean and adds the prefix and suffix to the given view and displays the jsp


  • I am following the same flow to create a login page.
    But I am gacing many errors.
    Can any one explain the correct flow.

    Thanks in advance
     
    reply
      Bookmark Topic Watch Topic
    • New Topic