This link says that Spring MVC is essentially a request dispatcher framework, with a Servlet API variant and Portlet API variant.
So then, what exactly does this mean? What kind of environment do these two approaches provide?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It means that Spring will start and wait for requests, and it will redirect the requests received to your code.
You can implement your code either as servlets or portlets, usually extending/implementing one of the classes/interfaces provided by such API. Spring will provide mechanisms so you can forget the gory details (TCP, managing URLs) and concentrate in your code.