EJB Types

Three different types of the Enterprise JavaBeans are available:
. Session beans:
    Usually implement transactions or process flows,which are executed as services that are performed for clients.
. Entity beans:
    Represent business objects.These are associated persistent objects that contain data from a database.
. Message driven beans:
    Also implement transactions or process flows,but are triggered by receiving a message.


你可能感兴趣的:(ejb)