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 / naina verma
Difference between servlets and JSP:
1. Servlet = HTML in java code.
JSP = java code in HTML.
2. Servlet support all protocols.
JSP only support HTTP protocol.
3. Servlet has more Dynamic content and less Static.
JSP less Dynamic content and more static content.
4. Servlet has business logic.
JSP has presentation and business logic both.
5. In servlet for any modification recompilation is done.
In JSP no recompilation is done for any modification.
6. Servlet is fast.
JSP is Slow.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is http servlet?
How can the session in servlet can be destroyed?
What is the use of httpservletrequestwrapper and httpservletresponsewrapper?
How many servlet objects are created?
Why is httpservlet declared abstract?
What is the difference between the getrequestdispatcher(string path) method of javax.servlet.servletrequest interface and javax.servlet.servletcontext interface?
How to get the path of servlet in the server?
What is the servlet?
Can a jsp be called using a servlet?
Difference between get and post in java servlets?
What is pure servlet?
What do you mean by request dispatcher in servlet? Also explain its methods.
Is it good idea to create servlet constructor?
Why jsp is better than servlet?
What exception should be thrown when servlet is not properly initialized?