Summary

Today, you have looked at using JavaServer Pages as a means of developing Web-based J2EE applications. Unlike servlets, JSPs allow you to develop your Web pages in HTML with embedded Java code when dynamic elements are required.

JSP pages are translated into Java servlets and compiled before they are used to service client requests. To the browser, a JSP is no different to any other Web page.

JSP defines three elements to supplement the standard HTML tags:

  • Directives that are used to pass information to the page translation phase

  • Scripts that define Java code used to embed dynamic data in the page

  • Actions that define JSP tags used to support JavaBeans

JavaBeans are used to encapsulate Java functionality to remove some Java script code from the Web page. Beans help separate the role of Java developer from that of HTML Web developer. Beans are classes that have a no argument constructor and properties. Bean properties have names, are queried using getter methods, and are updated using setter methods.

In the next lesson, you will study defining your own custom tags as part of a tag library. Tag libraries will support complex page features, such as the iterative processing of dynamic data (such as a list of customers). With carefully constructed tag libraries, a JSP page can be written without using any Java code at all.

..................Content has been hidden....................

You can't read the all page of ebook, please click here login for view all page.
Reset
3.145.179.85