May 2013
Intermediate to advanced
748 pages
20h 58m
English
CHAPTER 9
![]()
Enterprise JavaBeans
Enterprise JavaBeans were created in order to separate the view layers from the database access and business layers. EJBs are where all of the database (EntityManager) access and business logic should take place within a Java EE application, and they have become significantly easier to use over the past few releases. EJBs are used to coordinate database tasks with entities, and JSF managed beans are used to interact directly with the JSF web pages. Managed beans are used to provide a façade between the view layer and the business layer.
EJBs are deployed to an application server container, which manages the bean ...