JSP Tutorials

JSP Tutorial
Previous Home Next
adplus-dvertising

JSP stands for Java Server Pages, it is a kind of server side technology.It is used to host the dynamic data on the web server and the product of Sun & part of J2EE.But now it is the product of Oracle Corpation.

JSP technology is used to create web application just like Servlet technology. It can be thought of as an extension to servlet because it provides more functionality than servlet such as expression language, jstl etc.

A JSP page consists of HTML tags and JSP tags. The jsp pages are easier to maintain than servlet because we can separate designing and development. It provides some additional features such as Expression Language, Custom Tag etc.

Advantage of JSP over Servlet

There are many advantages of JSP over servlet. They are as follows:
  1. Extension to Servlet
  2. JSP technology is the extension to servlet technology. We can use all the features of servlet in JSP. In addition to, we can use implicit objects, predefined tags, expression language and Custom tags in JSP, that makes JSP development easy.

  3. Easy to maintain
  4. JSP can be easily managed because we can easily separate our business logic with presentation logic. In servlet technology, we mix our business logic with the presentation logic.

  5. Fast Development: No need to recompile and redeploy
  6. If JSP page is modified, we don't need to recompile and redeploy the project. The servlet code needs to be updated and recompiled if we have to change the look and feel of the application.

  7. Less code than Servlet
  8. In JSP, we can use a lot of tags such as action tags, jstl, custom tags etc. that reduces the code. Moreover, we can use EL, implicit objects etc.

Previous Home Next