Thread: Servlet vs JSP
View Single Post
  #5 (permalink)  
Old 04-09-2008, 10:28 AM
javarishi javarishi is offline
Member
 
Join Date: Apr 2008
Posts: 91
javarishi is on a distinguished road
Hei,
Both JSP And Servlet Are ServerSide Components For Serving

Http Requests. But The Purpose Is Defferent.

Use Jsp Wherever you want to display some data to User as

UserInterface. jsp will be used for presentation logic.

Servlet Can Be Used To Implement Controller Logic. That Is to

implement the request-response flow scenarios in your application.
Reply With Quote