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 / sree
Servlet is a Java Mechanism which is a part of J2SE(J2SE was also said by some pgmers as Java 2 Servlet edition) and further implemented into J2EE and now on JEE. The difference between servlets and jsp is that in JSP each page is considered as a single dynamic page from which the reference to other pages are very easy ... for example.. in servlet to forward a page from html we use:<form method=post action="http://localhost:8080/ctxt/java_class"> but in jsp we just give <form method=post action="filename.jsp"> ! But how does this work.. The server just takes the filename.jsp and converts that into a filename.class and inserts http://localhost :8080/ctxt root in front of it(A virtual assumption for understandability) and communicates...so the programming complexity is generaaly reduced.. and ther are loo of differences given by others and hence i just liked to share this information with you people.
Thankyou.
| Is This Answer Correct ? | 6 Yes | 5 No |
Post New Answer View All Answers
How do you find out what client machine is making a request to your servlet
What is servlet and list its types?
What is servletconfig?
What do you mean by url pattern in servlet?
What is called Session Tracking?
What is called servlet mapping?
What if we pass negative value in load-on-startup?
How do we translate jsp?
When a servlet accepts a call from a client, it receives two objects. What are they?
Is dispatcher servlet a singleton?
Differentiate between the print writer and servlet output stream?
What is difference between the HTTP Servlet and Generic Servlet? Explain about their methods and parameters?
Define servlet mapping?
How can we implement a jsp page?
What is the type of method for sending request from http server?