what is the difference between Servlet and JSP?Advantage of
JSP over Servelt?Any concept present in JSP which we cant
implement in Servlet?

Answer Posted / farhaananwar

JSP is the extension of HttpServlet instance. JSP is
basically used for presentation and servlet is used for
bussiness logic although you use servlet for presentation
after all JSP page also boil down to jsp servlet but
presentation with servlet is realy labours and boring.
Servlet are free from Http protocol you can use
GenericServlet class as base class of your custom servlet
class to perform communication with client either in http
protocal and others but with JSP page your are married only
to HTTP protocol. JSP page provides you with set of implicit
objects that are page, request, response, session,
pageContext, config, out, application, exception (only for
error page) whereas you do not find them in servlet at your
disposal. With help of servlet you can not only use jstl
tags but also design your own custom tags which can be
classic tags, simple tag and tag file. this help you to keep
away java code from JSP page presentaion. tags are like
function call where rest of bussiness logic kept away from
main flow program this helps to keep thing unclutterd and
encouraged reusablity. use of bean with standard action and
tags are easier than the use of bean in servlet.
EL expression, EL function, tags are some new concepts
that can not be used in servlet as it is but need some hard-
coding in java lang to achieve the same.

Is This Answer Correct ?    92 Yes 26 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the drawbacks of cgi?

570


What do you mean by cgi and what are its drawbacks?

531


Explain session tracking and its importance?

546


How to rectify errors in java servlet while compilation?

521


What's the servlet interface?

596






What are the steps that are involved in using the httpservlet class?

574


What are the types of Session Tracking ?

648


How are filters?

582


explain the advantages of servlet life cycle?

560


Is servlet thread safe?

523


How do you invoke a Servlet? What is the difference between doPost method and doGet method?

644


Define the lifecycle for executing a jsp page.

595


What is servlet initializer?

505


What is the use of httpservletrequestwrapper?

592


What is the purpose of dispatcherservlet properties?

508