JavaBeans
(DemoinNetBeans)
Presented by:
Roll No’s: 801331002
801331003
801331004
801331029
Branch: SE
JavaBeans
 JavaBeans™ makes it easy to reuse software components.
 Developers can use software components written by others
without having to understand their inner workings.
Types of
JavaBeans
1. Window application using JavaBeans.
2. Web applications using JavaBeans.
Reuseable
components in
netbeans for
Window
application
 Button
 Labels
 Text Field
 Check Box
 Combo Box
 Radio Button
 ETC.
Properties of
javabean
•It may have a number of properties which can be read or written.
•It may have a number of "getter" and "setter" methods for the
properties.
Demo In NetBeans
Web applications
usingJavaBeans
 By using concrete classes.
 By using library
JavaBeans
Properties
 A JavaBean property is a named attribute that can be accessed by
the user of the object.
 A JavaBean property may be read, write, read only, or write only.
JavaBean properties are accessed through two methods in the
JavaBean's implementation class:
Methods
Method Description
getPropertyName()
For example, if property name is
firstName, your method name
would be getFirstName() to read
that property.This method is called
accessor.
setPropertyName()
For example, if property name is
firstName, your method name
would be setFirstName() to write
that property.This method is called
mutator.
Accessing
JavaBeans:
• The useBean action declares a JavaBean for use in a JSP.
• Once declared, the bean becomes a scripting variable that
can be accessed by both scripting elements and other custom
tags used in the JSP.
• The full syntax for the useBean tag is as follows:
<jsp:useBean id="bean's name" scope="bean's scope"
class=“classname”/>
Syntax
elaborated
<jsp:useBean id="bean's name" scope="bean's scope"
class=“classname”/>
“Id” attribute specify the object name.
“Scope” attribute will specify scope of that bean.
eg. Session etc.
“class” attribute specify the package that contains the class and
class name that is used as bean.
Demo In NetBeans
Demo In NetBeans

Java bean