Difference between Java Bean and Enterprise Java Beans? [closed]
A JavaBean is just a plain old Java object that conforms to certain conventions including the use of accessor functions (getFoo/setFoo) for member access, provision of a default constructor and a few other things like that. An Enterprise JavaBean is a component in a Java EE application server which comes in several flavours, the details … Read more