posted 20 years ago
EJBs and Java Beans are completely different.
EJBs are distributed components, deployable components. Distributed component needs a runtime environment, usually some type of container, so EJBs are deployed in container and their lifecycle is managed by the container. Also, the EJBs deployed individually usually performs one business task, and hence client can usually access EJB directly to perform a particular business function.
Whereas java beans are usually a small part of a bigger system, that serves for one business functionality. They help build larger systems.