RE: What is the difference between normal Java object and EJB
Java Object: is a reusable component. EJB : is a distributed component used to develop business applications. Container provides runtime environment for EJBs.
RE: What is the difference between normal Java object and EJB
Java objects are reusable components which are having variables methods. EJBs are also reusable components which can be placed at server side EJBs are distributed component and can be deployed in EJB Container.
RE: What is the difference between normal Java object and EJB
EJB is java object which complies to the EJB specification. EJB has some special features to address the problems like Deployability on verious standardized servers Transactions Security Persistence ..etc and increasing the reusability by externalizing these into deployment configurations
RE: What is the difference between normal Java object and EJB
Both are objects no doubt. But the EJB is the having implicit services that are provided by the container in which it is deployed as per the EJB spects.
RE: What is the difference between normal Java object and EJB
Hi I think everyone needs to brush their knowledge of basics in java and ejb. See a java object is like a live once instance and an ejb object works in a distrubuitable environment and it cab accessed remotely across connections