amar
Joined: 25 Apr 2006 Posts: 179
|
Posted: Sat May 06, 2006 4:01 am Post subject: JavaBeans and EJB Primer |
|
|
Java Server Pages (JSP's) permit server side Java logic to reside within the requested document.
The server side logic within a JSP is written in Java. The Java code segments, referred to as scriptlets, are generally responsible for providing dynamic HTML content to the JSP's response HTML. The JSP itself is compiled by the server, and is executed as an object that extends the Java Servlet API. As such, the HTTP Servlet request and response objects are available by the scriptlets defined within the JSP.
This document reviews client-server design considerations in respect to the use of JSP’s. Implementation options, particularly the use of JSP language extensions and use of Enterprise Java Beans (EJB's) will also be discussed. Focus will be placed on the presentation layer and how the JSP is used to provide a user interface and communicate business logic requests to the supporting system.
for read more information:
http://www.aurorainfo.com/wp9/ |
|