|
In short, a Java Bean is a class which follows certain coding conventions:
- Properties must be exposed as public setters and getters
- It must implement the Serializable interface
There is no relation between Java Beans and EJB other than that a "bean" is a component.
|