How to know whether we have to use JSP or Servlet in our project?

Showing Answers 1 - 3 of 3 Answers

veeru

  • Sep 8th, 2005
 

If we are having the web application dynamic which is having more displying pages then, we have to use JSP.?
?
And for controlling which JSP page has to display for appropriate request we have to use Sevlets as a controller

  Was this answer useful?  Yes

manikant

  • Oct 31st, 2005
 

Generally for small projects we use JSP model-1 where we use JSP for view and beans for business logic. For large projects while implementing JSP model-2 (MVC architecture) we use JSP+Servlet+Java Beans.

  Was this answer useful?  Yes

Isis

  • Apr 15th, 2006
 

Servlet is controller and JSP is of more a view so when the project needs more on view oart we can add JSP other wise both can do the sane thing but in larger projects the servlet code becomes cluttred

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions