SlideShare a Scribd company logo
Enterprise
JavaBeans (EJB)
What are EJBs?
They are components that can be connected to
form a system
They can represent data
They can represent behavior
Usually, EJBs fall into only one of these
categories
They are typically used in the server tier
EJBs can be persisted
EJBs can interact with other EJBs
Advantages of EJBs
EJBs are reusable components
Can be reused in different parts of the system
Can be packaged into libraries and sold
EJBs Can be combined visually using development IDEs
E.g. Visual Age, Visual Café
EJBs provide convenient abstractions so it do not require
you to write:
Multi-threaded, multiple access code
Database access code (e.g. JDBC)
Network communication code (i.e. it uses RMI) for client/server
communication
Network communication code for EJB to EJB communication
Transaction management code
EJBs from different businesses can interact easily
This is because of their well-defined interfaces
EJB in the Big Picture of J2EE
Ejb intro
EJB Communication
EJBs use IIOP as the wire protocol
Therefore, EJBs are compatible with RMI (i.e.,
RMI over IIOP) and CORBA libraries
Thus, you could write an EJB client in any
language that supports CORBA
EJB as Client/Server Middleware
Think of EJBs as just another Client/Server
middleware like RMI, CORBA, or Web Services
The EJB instance itself is the server
EJBs have clients (objects that call its methods)
One complication is that EJB clients can be:
Java Applets and Applications (using RMI or CORBA)
Non-Java applications (using CORBA)
JSPs and Servlets (using RMI or CORBA)
Other EJBs (using RMI or CORBA)
EJBs & 3-Tiered Architectures
Applet
Web Page Servlets & JSPs
EJBs
Database
Client Tier Server Tier Database Tier
In enterprise systems, EJB clients are
usually: Servlets, JSPs, or Other EJBs
EJBs & Multi-Tiered Architectures
Applet
Web Page Servlets & JSPs
EJBs
Database
3rd Party
EJBs
How EJBs Change Things
EJBs are most suitable for developing business
logic and data manipulation
If all of the business logic operations and data
manipulations are done using EJBs, the JSPs and
Servlets will be focused mainly on displaying the
results of those operations
Session EJBs: Used to represent system behavior (i.e.
business logic)
e.g. Storing products to purchase in the shopping cart
Entity EJBs: Used to represent & manipulate system data
e.g. Finding products that match a search term
Application Servers
Containers where EJBs (and JSPs and servlets)
are executed
Provide EJB functionality, including:
Persistence through databases (using JDBC)
Transactions (using Java Transaction Service)
Can provide advanced features, including:
Load balancing
Database connection pooling
Here are the major application servers:
SJS AP, WebLogic (BEA), Internet Application
Server or iAS (Oracle), WebSphere (IBM)
Alternatives to EJBs
Web Services are one of the technologies
competing with EJBs
Web services use the SOAP protocol to exchange
information with some server
SOAP uses an XML format to exchange request and
response information via HTTP
Due to SOAP's well-defined protocol, Web Services can be
used to exchange information between businesses (B2B)
Web services provide one or more remote method that
can be accessed easily from other applications
Alternatives to EJBs
CORBA objects provide some functionality similar
to EJBs:
Persistence (of CORBA object data)
Transactions (between CORBA objects)
Security (between CORBA objects)
CORBA and EJBs are closely related, in fact, they
use the same wire protocol:
IIOP
In some sense, EJBs can be considered to be an
enhanced version of CORBA
Except that EJBs can only be created in Java
EJB Types
Types of Enterprise Beans
Session beans:
Also called business process objects
They represent the business logic of the system
Their lifetime is usually an entire session
When a session is done, the session bean expires
i.e. Session bean instances exist as long as a specific
user is using the system
Entity beans:
Also called business data objects
They represent persistent data
Often the data persistence is managed through a
database, using JDBC
Subtypes of Session Beans
Stateful:
Used for operations that require multiple
requests to be completed
Maintain data between requests
Stateless:
Used for operations that can be performed in
a single request
Do not maintain persistent data between
subsequent requests from a given client
Entity Beans Explained
Entity beans represent data in the system
In addition, entity beans are used to search for, modify, create and
delete data
Usually, this data resides in a relational database
Each entity bean typically represents a single row in some database
table
An entity bean instance exists as long as the data is being
used
When the EJB client is done with the instance, the entity bean
instance usually returns to a bean pool
The client for an entity bean is typically a session bean, since
behavior usually involves the manipulation of data
Subtypes of Entity Beans
Bean-managed persistence:
The entity bean handles its own persistence
Often via JDBC (or SQL/J) to a database
The bean author is required to write persistence-
management code into the bean code itself
Container-managed persistence:
The entity bean’s persistence is automatically maintained
by the EJB container
This is the easiest way, and often EJB containers do a
better job because they provide extra features like
connection pooling, load balancing, etc.
This method is known to be extremely reliable, since
CMP code is usually well tested
Persistence logic is kept in “declarative code” in the EJB
deployment descriptor
Session and Entity Beans
An EJB Autopsy
The remote interface
Describes the interface provided to EJB clients
The enterprise bean class
The implementation of the bean
The home interface
Describe how client can create, find, and
remove EJB instances
EJP Autopsy
Ejb intro
Ejb intro
The Remote Interface
Describes the interface provided to EJB clients
Must extends javax.ejb.EJBObject
This interface usually provides a number of
accessor methods (getters and setters) for the
bean’s fields, as well as all business methods
The Enterprise Bean Class
The implementation of the bean
This is where the methods exported in the remote
interface are defined
Business logic and data operations occur here
EJB classes must implement one of the following
interfaces: javax.ejb.SessionBean, javax.ejb.EntityBean
The Home Interface
The home interface describes any methods not
requiring access to a particular bean instance
Methods for creating, finding, and deleting bean
instances
Must extend javax.ejb.EJBHome
EJB Naming Conventions
Enterprise bean class:
<name>Bean, e.g. CustomerBean
Home interface:
<name>Home, e.g. CustomerHome
Remote interface:
<name>, e.g. Customer
EJB Client Operation
An EJB client uses an EJB by first locating its
home object
The methods on this home object are declared in the
home interface
The home object is located using JNDI
The client tells JNDI what name the EJB goes by, and
JNDI gives a home interface for that EJB
Once a home object is obtained, the client calls
some home methods to access the EJB
e.g. The client may call “create” to create a new
instance, “remove” to delete an instance, “findXYZ” to
search for EJBs.
References
Developing Enterprise Applications Using the J2EE Platform,
http://java.sun.com/developer/onlineTraining/J2EE/Intro2/j2ee.html
Sang Shin, EJB Overview, http://www.javapassion.com/j2ee

More Related Content

PDF
Ejb intro
PPTX
Java bean
PPSX
Entity beans in java
PDF
EJB 3.0 and J2EE
PDF
Ejb3 Presentation
PPTX
EJB3 Basics
PDF
Lecture 8 Enterprise Java Beans (EJB)
PPTX
Enterprise java beans
Ejb intro
Java bean
Entity beans in java
EJB 3.0 and J2EE
Ejb3 Presentation
EJB3 Basics
Lecture 8 Enterprise Java Beans (EJB)
Enterprise java beans

What's hot (20)

PDF
Enterprise Java Beans - EJB
PPTX
Java EE EJB Applications
PPT
Ch4 ejb
PPTX
Introduction to EJB
PDF
Ejb notes
PPTX
EJB3 Advance Features
PDF
Enterprise JavaBeans(EJB)
PPTX
PPTX
Enterprise Java Beans 3 - Business Logic
PPTX
enterprise java bean
PPT
Session 1 Tp1
PDF
EJB 3.0 - Yet Another Introduction
PPT
PPTX
Core jdbc basics
PDF
EJB Interview Questions
PPTX
J2ee web services(overview)
PPTX
J2 ee architecture
DOCX
J2 ee tutorial ejb
DOCX
J2EE Architecture Explained
DOCX
Java unit 4_cs_notes
Enterprise Java Beans - EJB
Java EE EJB Applications
Ch4 ejb
Introduction to EJB
Ejb notes
EJB3 Advance Features
Enterprise JavaBeans(EJB)
Enterprise Java Beans 3 - Business Logic
enterprise java bean
Session 1 Tp1
EJB 3.0 - Yet Another Introduction
Core jdbc basics
EJB Interview Questions
J2ee web services(overview)
J2 ee architecture
J2 ee tutorial ejb
J2EE Architecture Explained
Java unit 4_cs_notes
Ad

Similar to Ejb intro (20)

PPT
Aravind vinnakota ejb_architecture
PPT
ADVANCED JAVA MODULE I & II.ppt
PDF
Ejb - september 2006
PDF
Introcution to EJB
PPT
J2 Ee Overview
PPT
J2EE - Practical Overview
PPTX
Abstract #236765 advanced essbase java api tips and tricks
 
PPT
EJB 3.0 Java Persistence with Oracle TopLink
PPT
Unite5-EJB-2019.ppt
PPT
Topic4 Application Servers
PPTX
Advanced Java Programming - Enterprise Java Beans client
PPTX
Java j2eeTutorial
PPT
Virtual classroom
PDF
Real world java_ee_patterns
PPT
Session 3 Tp3
DOCX
EJB Container Using in Java Bean process
PPT
Design patterns
PPT
ejb.ppt java lecture notes enterprise java
PPT
Enterprise Java Beans( E)
Aravind vinnakota ejb_architecture
ADVANCED JAVA MODULE I & II.ppt
Ejb - september 2006
Introcution to EJB
J2 Ee Overview
J2EE - Practical Overview
Abstract #236765 advanced essbase java api tips and tricks
 
EJB 3.0 Java Persistence with Oracle TopLink
Unite5-EJB-2019.ppt
Topic4 Application Servers
Advanced Java Programming - Enterprise Java Beans client
Java j2eeTutorial
Virtual classroom
Real world java_ee_patterns
Session 3 Tp3
EJB Container Using in Java Bean process
Design patterns
ejb.ppt java lecture notes enterprise java
Enterprise Java Beans( E)
Ad

Recently uploaded (20)

PPTX
history of c programming in notes for students .pptx
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
System and Network Administration Chapter 2
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PPTX
L1 - Introduction to python Backend.pptx
PPTX
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
 
PPTX
Transform Your Business with a Software ERP System
PDF
Nekopoi APK 2025 free lastest update
PPTX
ai tools demonstartion for schools and inter college
PPTX
ManageIQ - Sprint 268 Review - Slide Deck
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
System and Network Administraation Chapter 3
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
medical staffing services at VALiNTRY
history of c programming in notes for students .pptx
Wondershare Filmora 15 Crack With Activation Key [2025
PTS Company Brochure 2025 (1).pdf.......
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
Design an Analysis of Algorithms I-SECS-1021-03
System and Network Administration Chapter 2
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
How Creative Agencies Leverage Project Management Software.pdf
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
L1 - Introduction to python Backend.pptx
Lecture 3: Operating Systems Introduction to Computer Hardware Systems
 
Transform Your Business with a Software ERP System
Nekopoi APK 2025 free lastest update
ai tools demonstartion for schools and inter college
ManageIQ - Sprint 268 Review - Slide Deck
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
Internet Downloader Manager (IDM) Crack 6.42 Build 41
System and Network Administraation Chapter 3
Which alternative to Crystal Reports is best for small or large businesses.pdf
medical staffing services at VALiNTRY

Ejb intro

  • 2. What are EJBs? They are components that can be connected to form a system They can represent data They can represent behavior Usually, EJBs fall into only one of these categories They are typically used in the server tier EJBs can be persisted EJBs can interact with other EJBs
  • 3. Advantages of EJBs EJBs are reusable components Can be reused in different parts of the system Can be packaged into libraries and sold EJBs Can be combined visually using development IDEs E.g. Visual Age, Visual CafĂ© EJBs provide convenient abstractions so it do not require you to write: Multi-threaded, multiple access code Database access code (e.g. JDBC) Network communication code (i.e. it uses RMI) for client/server communication Network communication code for EJB to EJB communication Transaction management code EJBs from different businesses can interact easily This is because of their well-defined interfaces
  • 4. EJB in the Big Picture of J2EE
  • 6. EJB Communication EJBs use IIOP as the wire protocol Therefore, EJBs are compatible with RMI (i.e., RMI over IIOP) and CORBA libraries Thus, you could write an EJB client in any language that supports CORBA
  • 7. EJB as Client/Server Middleware Think of EJBs as just another Client/Server middleware like RMI, CORBA, or Web Services The EJB instance itself is the server EJBs have clients (objects that call its methods) One complication is that EJB clients can be: Java Applets and Applications (using RMI or CORBA) Non-Java applications (using CORBA) JSPs and Servlets (using RMI or CORBA) Other EJBs (using RMI or CORBA)
  • 8. EJBs & 3-Tiered Architectures Applet Web Page Servlets & JSPs EJBs Database Client Tier Server Tier Database Tier In enterprise systems, EJB clients are usually: Servlets, JSPs, or Other EJBs
  • 9. EJBs & Multi-Tiered Architectures Applet Web Page Servlets & JSPs EJBs Database 3rd Party EJBs
  • 10. How EJBs Change Things EJBs are most suitable for developing business logic and data manipulation If all of the business logic operations and data manipulations are done using EJBs, the JSPs and Servlets will be focused mainly on displaying the results of those operations Session EJBs: Used to represent system behavior (i.e. business logic) e.g. Storing products to purchase in the shopping cart Entity EJBs: Used to represent & manipulate system data e.g. Finding products that match a search term
  • 11. Application Servers Containers where EJBs (and JSPs and servlets) are executed Provide EJB functionality, including: Persistence through databases (using JDBC) Transactions (using Java Transaction Service) Can provide advanced features, including: Load balancing Database connection pooling Here are the major application servers: SJS AP, WebLogic (BEA), Internet Application Server or iAS (Oracle), WebSphere (IBM)
  • 12. Alternatives to EJBs Web Services are one of the technologies competing with EJBs Web services use the SOAP protocol to exchange information with some server SOAP uses an XML format to exchange request and response information via HTTP Due to SOAP's well-defined protocol, Web Services can be used to exchange information between businesses (B2B) Web services provide one or more remote method that can be accessed easily from other applications
  • 13. Alternatives to EJBs CORBA objects provide some functionality similar to EJBs: Persistence (of CORBA object data) Transactions (between CORBA objects) Security (between CORBA objects) CORBA and EJBs are closely related, in fact, they use the same wire protocol: IIOP In some sense, EJBs can be considered to be an enhanced version of CORBA Except that EJBs can only be created in Java
  • 15. Types of Enterprise Beans Session beans: Also called business process objects They represent the business logic of the system Their lifetime is usually an entire session When a session is done, the session bean expires i.e. Session bean instances exist as long as a specific user is using the system Entity beans: Also called business data objects They represent persistent data Often the data persistence is managed through a database, using JDBC
  • 16. Subtypes of Session Beans Stateful: Used for operations that require multiple requests to be completed Maintain data between requests Stateless: Used for operations that can be performed in a single request Do not maintain persistent data between subsequent requests from a given client
  • 17. Entity Beans Explained Entity beans represent data in the system In addition, entity beans are used to search for, modify, create and delete data Usually, this data resides in a relational database Each entity bean typically represents a single row in some database table An entity bean instance exists as long as the data is being used When the EJB client is done with the instance, the entity bean instance usually returns to a bean pool The client for an entity bean is typically a session bean, since behavior usually involves the manipulation of data
  • 18. Subtypes of Entity Beans Bean-managed persistence: The entity bean handles its own persistence Often via JDBC (or SQL/J) to a database The bean author is required to write persistence- management code into the bean code itself Container-managed persistence: The entity bean’s persistence is automatically maintained by the EJB container This is the easiest way, and often EJB containers do a better job because they provide extra features like connection pooling, load balancing, etc. This method is known to be extremely reliable, since CMP code is usually well tested Persistence logic is kept in “declarative code” in the EJB deployment descriptor
  • 20. An EJB Autopsy The remote interface Describes the interface provided to EJB clients The enterprise bean class The implementation of the bean The home interface Describe how client can create, find, and remove EJB instances
  • 24. The Remote Interface Describes the interface provided to EJB clients Must extends javax.ejb.EJBObject This interface usually provides a number of accessor methods (getters and setters) for the bean’s fields, as well as all business methods
  • 25. The Enterprise Bean Class The implementation of the bean This is where the methods exported in the remote interface are defined Business logic and data operations occur here EJB classes must implement one of the following interfaces: javax.ejb.SessionBean, javax.ejb.EntityBean
  • 26. The Home Interface The home interface describes any methods not requiring access to a particular bean instance Methods for creating, finding, and deleting bean instances Must extend javax.ejb.EJBHome
  • 27. EJB Naming Conventions Enterprise bean class: <name>Bean, e.g. CustomerBean Home interface: <name>Home, e.g. CustomerHome Remote interface: <name>, e.g. Customer
  • 28. EJB Client Operation An EJB client uses an EJB by first locating its home object The methods on this home object are declared in the home interface The home object is located using JNDI The client tells JNDI what name the EJB goes by, and JNDI gives a home interface for that EJB Once a home object is obtained, the client calls some home methods to access the EJB e.g. The client may call “create” to create a new instance, “remove” to delete an instance, “findXYZ” to search for EJBs.
  • 29. References Developing Enterprise Applications Using the J2EE Platform, http://java.sun.com/developer/onlineTraining/J2EE/Intro2/j2ee.html Sang Shin, EJB Overview, http://www.javapassion.com/j2ee