*** Welcome to piglix ***

JavaBeans


In computing based on the Java Platform, JavaBeans are classes that encapsulate many objects into a single object (the bean). They are serializable, have a zero-argument constructor, and allow access to properties using getter and setter methods. The name "Bean" was given to encompass this standard, which aims to create reusable software components for Java.

The JavaBeans functionality is provided by a set of classes and interfaces in the java.beans package.

In order to function as a JavaBean class, an object class must obey certain conventions about method naming, construction, and behaviour. These conventions make it possible to have tools that can use, reuse, replace, and connect Java Beans.

The required conventions are as follows:

TestPersonBean.java:

testPersonBean.jsp;


...
Wikipedia

...