Hi Abhishek,
I will describe you a little how to use MVC for a simple Shopping
Cart. For using MVC basically u need Servlets as Controllers, Java Beans
as models and JSP for displayig.
We can show all the items in a JSP page.
Once user selects one items, request will goes to controller ie.servlet.
We have to write all business methods in java beans only.
Then servlet will call a bean method which can retrieve item details.
In servlet, we will store all these items in session.
Then we will pass user again to products page using RequestDispatcher
Hopes you got the basic work flow of MVC
cheers
MHRAO