Tuesday, September 24, 2013

Difference between servlets and jsp::BrainBitz

JSPServlets
JSP is a webpage scripting language that can generate dynamic content.Servlets are Java programs that are already compiled which also creates dynamic web content.
Servlets run faster compared to JSP.JSP run slower compared to Servlet. JSP compiles into Java Servlets.
It’s easier to code in JSP than in Java Servlets.Its little much code to write here.
In MVC, jsp act as a view.In MVC, servlet act as a controller.
JSP are generally preferred when there is not much processing of data required.servlets are best for use when there is more processing and manipulation involved.
The advantage of JSP programming over servlets is that we can build custom tags which can directly call Java beans.There is no such facility in servlets.
We can achieve functionality of JSP at client side by running JavaScript at client side.There are no such methods for servlets.

No comments:

Post a Comment