GI404 Enterprise Java Beans (EJB).
Course currently not scheduled
List of currently scheduled courses click here
This course introduces the experienced Java developer to Enterprise JavaBeans -- the Java EE standard for scalable, secure, and transactional Java components. EJB 3.0 has reinvigorated this area of Java enterprise development, with dramatic improvements in ease of use and smooth integration with servlet-based or JSF web applications. This course treats the 3.0 specification, with a few notes on 2.1 compatibility but an emphasis on doing things the 3.0 way.
Students get an overview of the EJB rationale and architecture, and then dive right into creating session beans and entities. The new dependency-injection features of EJB3 cause perhaps the most confusion, so we work through a chapter devoted explicitly to DI and JNDI, and basically how components find each other to make an application. We then study entities and the Java Persistence API more deeply, and get a look at message-driven beans as well.
Topics
- Overview
- Enterprise Applications
- Containers and Objects
- Three Containers
- Remote Connectivity
- Scalability and Availability
- Security
- Transaction Control
- Architecture
- What is an EJB?
- Types of Beans
- Inversion of Control
- The Bean-Type Annotations
- Dependency Injection
- The @EJB Annotation
- Development Cycle and Roles
- Session Beans
- Interface/Implementation Split
- Stateful vs. Stateless
- The @Stateless Annotation
- Lifecycle and State Transitions
- Session Context
- The @Stateful Annotation
- State Transitions
- Singletons and Pools
- Entities
- The Java Persistence API
- Persistence Annotations
- Configuration by Exception
- ORM Annotations
- The EntityManager
- Acquiring and Using the EntityManager
- persistence.xml
- @Enumerated and @Temporal Types
- Associations
- Associations, Cardinality, and Ownership
- Annotations
- Unidirectional vs. Bidirectional
- The @Embedded Annotation
- Java Persistence Query Language
- OO Query Languages
- The FROM Clause and Directionality
- The WHERE Clause
- The SELECT Clause
- Joins
- Aggregates and Grouping
- Ordering
- Dependency Injection
- Interdependent Systems
- The Factory Pattern
- The Service Locator Pattern
- Dependency Injection
- Injection by Magic?
- Injection by Type
- Injection by Name
- The Component Environment
- Deployment Descriptors
- Impact on Stateful Session Beans
- JNDI
- Connecting to a Remote Bean
- Using mappedName
- Who Can Declare Dependencies
- Message-Driven Beans (Optional)
- Asynchronous Messaging
- The Java Message Service
- Message-Driven Beans
- Message Types
- Injecting JMS Queues