Steve,
I would say that the term 'JSP Bean' is useful and would disagree with
Jann's statement that 'beans is beans'.  The beans that are typically used
in JSP pages are used on the server side and not on the client side. They
are not typically configured using a GUI tool and are not stored in
serialized form.  Beans in JSP pages are typically used as value objects to
store related pieces of data or to encapsulate functionality in a reusable
package.  JSP beans don't use any of the classes in the java.beans package
as the other JavaBeans might use.  JavaBeans, on the other hand, are
sometimes written to operate in different design-time and run-time
modes.  At design-time the component provides information necessary to edit
its properties and customize its behavior.  It also needs to expose methods
and events so that a design tool can write code that interacts with the
bean at run-time.

The main similarities between the two are that the both adhere to the
design pattern of using getter and setter methods for accessing member
variables.

-Richard


At 09:57 AM 8/29/01 -0700, you wrote:
>Is the term "JSP Beans" useful?  I've noticed that in several JSP books, the
>authors use this term.  One book even had an index reference for JavaBeans
>that said "See JSP Beans." Yet, when I search Sun's site for the use of the
>term, it doesn't exist.  Is this a useful term to distinguish from Java
>Beans, or just Beans?
>
>Steve
>
>===========================================================================
>To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff
>JSP-INTEREST".
>For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
>Some relevant FAQs on JSP/Servlets can be found at:
>
>  http://java.sun.com/products/jsp/faq.html
>  http://www.esperanto.org.nz/jsp/jspfaq.html
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
>  http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
For digest: mailto [EMAIL PROTECTED] with body: "set JSP-INTEREST DIGEST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to