SlideShare a Scribd company logo
1 of 40
June 21, 2017 www.snipe.co.in 1
Prepared :Snipe Team
June 21, 2017 www.snipe.co.in 2
Enterprise Java Beans
June 21, 2017 www.snipe.co.in 3
 What Is EJB??
 Key Features
 Why EJB??
 EJB V/S JavaBeans
 EJB Architecture
 EJB Container Services
 Contracts
 Modules
 MVC Architecture
 Analysis of Objects
 Example of EJB Design,Usecases, UseCase Diagram
 Summary
Agenda
June 21, 2017 www.snipe.co.in 4
What??
EJB is a widely-adopted server-side component architecture for
J2EE.
EJB components are designed to encapsulate business logic,
and to protect the application developer from having to worry
about system level issues.
An EJB is just a collection of Java classes and XML file,
bundled into a single unit. The Java classes must follow certain
rules and provide certain callback methods.
EJB is just a specification. It is not a product.
EJBs are reusable components.
June 21, 2017 www.snipe.co.in 5
Key Features
 EJB architecture is inherently transactional, distributed,
portable, multi-tier, scalable and secure.
 EJB components are fully portable across any EJB server and
any OS, work with any client.
 Components are declaratively customized.
 There are four major parts to every bean:
• the home interface,
• the remote interface,
• the implementation class and
• the XML deployment descriptor
June 21, 2017 www.snipe.co.in 6
Why EJB??
EJB specification provides enterprise-level services, that is, it
provides software services that are fundamental to an
organization’s purpose.
EJB’s API was designed to keep the application programmer
from having to provide systems-level services, so that they are
free to concentrate on business logic.
A requirement of any of the services provided by an EJB
container like transactions, scalability, persistence, security,
future growth possibilities is an appropriate reason to use EJB
in the design of the application.
June 21, 2017 www.snipe.co.in 7
The JavaBeans architecture is meant to provide a format for
general-purpose components whereas the EJB architecture
provides a format for encapsulation and management of
business logic.
JavaBeans has tier of execution at Client and EJB has at Server
(specifically business logic tier)
In JavaBeans the runtime execution environment provides
services like Java libraries, Java application etc. The EJB
runtime environment provides services of Persistence,
declarative transactions and security, connection pooling and
lifecycle services.
EJB Vs JavaBeans
June 21, 2017 www.snipe.co.in 8
J2EE Application Server
Application Logic DataClient
RDBMS
Corba
Mail
RMI
JDBC
Java
Mail
JMS
JTA
Session Bean
EJB Container
Entity Bean
Client
Application
EJB
Architecture
June 21, 2017 www.snipe.co.in 9
Roles in EJB Development
System
Administrator
Application
Assembler
Deployer
App Server/EJB
Container
Provider
EJB
Provider
June 21, 2017 www.snipe.co.in 10
Roles in EJB Development
EJB provider - a person who develops EJB Components.
EJB Deployer - a person responsible for deploying EJB’s in EJB
server.
Application Server/ EJB Container Vendor - one who provides
application server on which the application is deployed.
Application assembler - one who combine the EJB components
with other software to make a complete application.
System administrator - one who manages the application after it
has been deployed into a target environment.
June 21, 2017 www.snipe.co.in 11
EJB Container Services
There are three basic ideas:
 First, there are clearly defined responsibilities between the
various parts of an application using EJB component namely the
client, the EJB container and the EJB component. The definition
of these responsibilities is formally known as a contract.
Second, the services that the container provides are defined in
such a way that they are orthogonal to the component. In other
words, security, persistence, transactions are separate from the
Java files that implement the business logic of the component.
Third, the container interposes on each and every call to an EJB
component so that it can provide its services. In other words, the
container puts itself between the client and the component on
every single business method call.
June 21, 2017 www.snipe.co.in 12
Contracts
EJB Container/Application Server
Enterprise Java Beans
C
Client
• The developer of the EJB component must implement the
business methods in the implementation class
• The bean provider must implement the
ejbCreate(),
ejbPostCreate(),ejbRemove() and the
ejbFind<METHOD>()
methods if the bean is an entity with bean managed persistence.
• The bean provider must define the enterprise bean’s home and
remote interfaces.
Rules for the Bean Programmer
June 21, 2017 www.snipe.co.in 14
• For session beans, the bean provider must implement the
container callbacks defined in the javax.ejb.SessionBean
interface
• For entity beans, the provider must implement the container
callbacks defined in the javax.ejb.EntityBean interface
• The bean provider must not use programming practices that
would interfere with the container’s runtime management of
the enterprise bean instances
Rules for the Bean Programmer
June 21, 2017 www.snipe.co.in 15
Modules
Interposition Diagram
Client
Remote
Stub
Remote
Stub
Container
Generated
Class
EJB
Netw
ork
June 21, 2017 www.snipe.co.in 16
Working With EJBs:
The Enterprise JavaBeans specification is written for
three audiences:
The Client developer
The EJB developer
The EJB container developer
June 21, 2017 www.snipe.co.in 17
EJB Clients are applications that access EJB components in EJB
containers.
There are two possible types:
The first category is application clients which are stand-alone
applications accessing the EJB components using the RMI-IIOP
protocol.
The second category of application clients are components in
the
web container. They are java servlets and JSPs which also
access the EJB components via the RMI-IIOP protocol.
EJB Clients
June 21, 2017 www.snipe.co.in 18
The client has a smaller set of concerns then a bean developer
with regard to using EJBs. Basically, he need to know :
how to find or create a bean,
how to use its methods and
how to release its resources
The client need not worry about the implementation of the EJB,
callbacks that the EJB container will make on the EJB or nature
of the services provided to the EJB.
Client Developer’s View
June 21, 2017 www.snipe.co.in 19
 Home Interface :
• It is primarily for the life cycle operations of the bean: creating,
finding, and removing EJBs.
• The home interface is not associated with a particular bean, just
with a type of bean.
Remote Interface :
• It is for business methods. Logically, it represents a particular
bean on the server.
• The remote interface also provides some infrastructure methods
associated with a bean instance, rather than a bean type.
EJB’s Interfaces
June 21, 2017 www.snipe.co.in 20
Package orderMgmt;
import java.util.properties;
import java.naming.Context; // for name-to-object findings
import java.naming.InitialContext;// context for naming
operations
public class Client {
try {
Properties prop = new Properties();
// server dependent properties for InitialContext
prop.put(Context.INITIAL_CONTEXT_FACTORY,
“org.jnp.interfaces.NamingContextFactory”);
prop.put(Context.PROVIDER_URL, “localhost:1099”);
Context ctx = new InitialContext(prop);
Object objref = ctx.lookup(“OrderManagement”);
Client.java
Continued..
June 21, 2017 www.snipe.co.in 21
// casting home interface reference to the OrderManagementHome
OrderManagementHome home = (OrderManagementHome)
javax.rmi.PortableRemoteObject.narrow
(objref,OrderManagementHome.class);
// home interface to create an instance of the OrderManagement
OrderManagement orderManagement = home.create();
// calling placeOrder()
orderManagement.placeOrder("Dan OConnor",
"Wrox books on programming", 1000);
orderManagement.remove();
System.out.println("Order successfully placed.");
}
catch (Exception e)
{ e.printStackTrace(); }
}
}
June 21, 2017 www.snipe.co.in 22
 Main responsibility is write business logic and structure the
code in a particular structure.
 The structure has 4 files, the home interface, remote interface,
business logic class file and the XML file.
 The XML file called the deployment descriptor, contains
• The structural information about the bean,
• Declares the bean’s external dependencies and
• Specifies certain information about how services such as
transaction and security work.
Bean Programmer’s View
June 21, 2017 www.snipe.co.in 23
package javax.ejb;
public interface javax.ejb.EJBObject extends java.rmi.Remote
{
EJBHome getEJBHome() throws java.rmi.RemoteException;
Handle getHandle() throws java.rmi.RemoteException;
Object getPrimaryKey() throws java.rmi.RemoteException;
boolean isIdentical(EJBObject obj) throws
java.rmi.RemoteException;
void remove() throws java.rmi.RemoteException;
}
Interface EJB Object:
June 21, 2017 www.snipe.co.in 24
package orderMgmt;
import javax.ejb.*;
public interface OrderManagement extends javax.ejb.EJBObject
{
public void placeOrder(String custName, String prodName, int
quantity) throws java.rmi.RemoteException;
public void cancelOrder(String custName, String prodName)
throws java.rmi.RemoteException;
public boolean isShipped(String custName, String prodName)
throws java.rmi.RemoteException;
}
Order Management Code:
June 21, 2017 www.snipe.co.in 25
package orderMgmt;
import javax.ejb.*;
public class OrderManagementEJB implements
javax.ejb.SessionBean
{
public void placeOrder(String custName, String prodName,
int quantity)
{ // ... Business logic ...}
public void cancelOrder(String custName, String prodName)
{ // ... Business logic ...}
public boolean isShipped(String custName, String prodName)
{ // ... Business logic … return true;}
OrderManagementBean code:
Continued…
June 21, 2017 www.snipe.co.in 26
public void ejbCreate()
{ // Can be empty }
public void ejbRemove()
{ // Can be empty }
public void ejbActivate()
{ // Can be empty}
public void ejbPassivate()
{ // Can be empty}
public void setSessionContext( SessionContext ctx )
{ // Can be empty}
}
June 21, 2017 www.snipe.co.in 27
Package javax.ejb;
public interface EJBHome extends java.rmi.Remote
{
EJBMetaData getEJBMetaData () throws
java.rmi.RemoteException;
HomeHandle getHomeHandle() throws
java.rmi.RemoteException;
void remove(Handle handle) throws java.rmi.RemoteException,
java.ejb.RemoveException;
void remove(Object primary key) throws
java.rmi.RemoteException, java.ejb.RemoveException;
}
Interface EJBHome:
June 21, 2017 www.snipe.co.in 28
package orderMgmt;
import javax.ejb.*;
public interface OrderManagementHome extends
javax.ejb.EJBHome
{
public OrderManagement create()
throws java.rmi.RemoteException, javax.ejb.CreateException;
}
OrderManagementHome Code:
June 21, 2017 www.snipe.co.in 29
<?xml version=“1.0”?>
<ejb-jar>
<enterprise-beans>
<session>
<ejb-name>OrderManagement</ejb-name>
<home>orderMgmt.OrderManagementHome</home>
<remote>orderMgmt.OrderManagement</remote>
<ejb-class>orderMgmt.OrderManagementBean</ejb-class>
<session-type>Stateless</session-type>
<transaction-type>Container</transaction-type>
</session>
</enterprise-beans>
The XML file:ejb-jar.xml:
Continued..
June 21, 2017 www.snipe.co.in 30
<assembly-descriptor>
<container-transaction>
<method>
<ejb-name>OrderManagement</ejb-name>
<method-name>*</method-name>
</method>
<trans-attribute>Required</trans-attribute>
</container-transaction>
</assembly-descriptor>
</ejb-jar>
June 21, 2017 www.snipe.co.in 31
META -INF
ejb-jar.xml
orderMgmt
OrderManagement.class
OrderManagementHome.class
OrderManagementBean.class
Structure of JAR file:
June 21, 2017 www.snipe.co.in 32
Three classes of objects in MVC architecture:
Model : This is the data and business-logic component. It can serve
multiple views.
View : This is the presentation component or the user-interface
component. There can be different presentations of a single model.
Controller : This is the component that responds to user input.
Translates user-interface events into changes to the model and
defines the way the user-interface reacts to those events.
MVC Architecture
June 21, 2017 www.snipe.co.in 33
Implementation of MVC in a web site
Controller
Model
Browser
Client
view1.jsp
view2.jsp
view3.jsp
Main.jsp
Views
1
2
3
4
5
June 21, 2017 www.snipe.co.in 34
Analysis Objects
 Control objects provide services to the application. They model
functionality that is not naturally associated with a particular
entity or interface. Control objects should be represented by
session beans in the implementation.
 Entity objects model those business objects that should
maintain their state after the use case completes. This means
they represent data in the database. Entity beans are often
represented by entity beans in the implementation model.
 Interface Object is responsible for controlling access to the EJB
tier from any client. An interface object should always be
represented by a session bean in the implementation.
Ex : controller servlet for the web application’s model-view-
controller architecture.
June 21, 2017 www.snipe.co.in 35
Consider the case of a company that develops products, takes
orders for those products, and then manufactures and ships them.
Actors in the company :
An engineer, a web customer,
A phone operator who takes orders from a catalog,
A floor manager who manages the manufacturing process,
A crew member that actually builds the product ordered and a
manager who tracks overdue orders.
An Example of EJB Design:
June 21, 2017 www.snipe.co.in 36
Create a Product
Place an Order
Cancel an Order
Select an Order for Manufacture
Build a Product
Ship an Order
List Overdue Orders
Use Cases
June 21, 2017 www.snipe.co.in 37
Use case diagram from analysis
Engineer
Customer
Operator
Manager
Crew
M’ment
Create Product
Place Order
Cancel Order
Select Order
Build Product
Ship an Order
Overdue Orders
June 21, 2017 www.snipe.co.in 38
EJBs are intended for transactional systems.
EJBs are portable, reusable server-side components that execute
in a container.
Assist developer productivity, extend application capability, and
improve system stability.
Are accessible from many different types of clients.
There are three types of beans : stateful session, stateless session,
and entity.
Continued..
Summary
June 21, 2017 www.snipe.co.in 39
There are four major parts to every bean:
• The home interface, the remote interface, the implementation
class, and the XML deployment descriptor.
• The enterprise bean developer must follow certain rules to get
the benefits of EJB technology.
• The roles of EJBs can be understood by analyzing a model of
your enterprise in terms of interface, control and entity
objects.
June 21, 2017 www.snipe.co.in 40
Thank You

More Related Content

What's hot

BCA IPU VB.NET UNIT-II
BCA IPU VB.NET UNIT-IIBCA IPU VB.NET UNIT-II
BCA IPU VB.NET UNIT-IIVaibhavj1234
 
Arthur Del Prado .Net Portfolio
Arthur Del Prado .Net PortfolioArthur Del Prado .Net Portfolio
Arthur Del Prado .Net Portfolioartsdp
 
Dynamic Object-Oriented Requirements System (DOORS)
Dynamic Object-Oriented Requirements System (DOORS)Dynamic Object-Oriented Requirements System (DOORS)
Dynamic Object-Oriented Requirements System (DOORS)David Groff
 
Capturing requirements: Importing documents
Capturing requirements: Importing documentsCapturing requirements: Importing documents
Capturing requirements: Importing documentsIBM Rational software
 
Jeff Huber Portfoilio
Jeff Huber PortfoilioJeff Huber Portfoilio
Jeff Huber PortfoilioJeffHuber
 
.NET Project Manual
.NET Project Manual.NET Project Manual
.NET Project Manualcormacsharpe
 
Managing requirements by using baselines
Managing requirements by using baselinesManaging requirements by using baselines
Managing requirements by using baselinesIBM Rational software
 
Harmik Uchian Portfolio
Harmik Uchian PortfolioHarmik Uchian Portfolio
Harmik Uchian Portfolioharmiku
 
EASY SOFTWARE DEVELOPMENT BY AUTOMATIC CODE GENERATION, BUSINESS LOGIC AND VA...
EASY SOFTWARE DEVELOPMENT BY AUTOMATIC CODE GENERATION, BUSINESS LOGIC AND VA...EASY SOFTWARE DEVELOPMENT BY AUTOMATIC CODE GENERATION, BUSINESS LOGIC AND VA...
EASY SOFTWARE DEVELOPMENT BY AUTOMATIC CODE GENERATION, BUSINESS LOGIC AND VA...ijiert bestjournal
 
Component based models and technology
Component based models and technologyComponent based models and technology
Component based models and technologySaransh Garg
 
Importing with ease july 2012
Importing with ease july 2012Importing with ease july 2012
Importing with ease july 2012IBM Rational
 
Component based models and technology
Component based models and technologyComponent based models and technology
Component based models and technologyMayukh Maitra
 
Migration from IBM DOORS 9 to DOORS Next Generation
Migration from IBM DOORS 9 to DOORS Next GenerationMigration from IBM DOORS 9 to DOORS Next Generation
Migration from IBM DOORS 9 to DOORS Next GenerationMatt Mendell
 
software engineering with uml- activity diagram
software engineering with uml- activity diagramsoftware engineering with uml- activity diagram
software engineering with uml- activity diagramrahmantoyuri
 
XPages Workshop: Concepts And Exercises
XPages Workshop:   Concepts And ExercisesXPages Workshop:   Concepts And Exercises
XPages Workshop: Concepts And Exercisesddrschiw
 
Creating an artifact at the project level
Creating an artifact at the project levelCreating an artifact at the project level
Creating an artifact at the project levelIBM Rational software
 
Interaction Flow Modeling Language: updates on the Beta2 version - by the OMG...
Interaction Flow Modeling Language: updates on the Beta2 version - by the OMG...Interaction Flow Modeling Language: updates on the Beta2 version - by the OMG...
Interaction Flow Modeling Language: updates on the Beta2 version - by the OMG...Marco Brambilla
 

What's hot (20)

BCA IPU VB.NET UNIT-II
BCA IPU VB.NET UNIT-IIBCA IPU VB.NET UNIT-II
BCA IPU VB.NET UNIT-II
 
Arthur Del Prado .Net Portfolio
Arthur Del Prado .Net PortfolioArthur Del Prado .Net Portfolio
Arthur Del Prado .Net Portfolio
 
Dynamic Object-Oriented Requirements System (DOORS)
Dynamic Object-Oriented Requirements System (DOORS)Dynamic Object-Oriented Requirements System (DOORS)
Dynamic Object-Oriented Requirements System (DOORS)
 
Capturing requirements: Importing documents
Capturing requirements: Importing documentsCapturing requirements: Importing documents
Capturing requirements: Importing documents
 
Jeff Huber Portfoilio
Jeff Huber PortfoilioJeff Huber Portfoilio
Jeff Huber Portfoilio
 
Identifying and managing change
Identifying and managing changeIdentifying and managing change
Identifying and managing change
 
.NET Project Manual
.NET Project Manual.NET Project Manual
.NET Project Manual
 
Vb6.0 intro
Vb6.0 introVb6.0 intro
Vb6.0 intro
 
Managing requirements by using baselines
Managing requirements by using baselinesManaging requirements by using baselines
Managing requirements by using baselines
 
Harmik Uchian Portfolio
Harmik Uchian PortfolioHarmik Uchian Portfolio
Harmik Uchian Portfolio
 
EASY SOFTWARE DEVELOPMENT BY AUTOMATIC CODE GENERATION, BUSINESS LOGIC AND VA...
EASY SOFTWARE DEVELOPMENT BY AUTOMATIC CODE GENERATION, BUSINESS LOGIC AND VA...EASY SOFTWARE DEVELOPMENT BY AUTOMATIC CODE GENERATION, BUSINESS LOGIC AND VA...
EASY SOFTWARE DEVELOPMENT BY AUTOMATIC CODE GENERATION, BUSINESS LOGIC AND VA...
 
Design patterns
Design patternsDesign patterns
Design patterns
 
Component based models and technology
Component based models and technologyComponent based models and technology
Component based models and technology
 
Importing with ease july 2012
Importing with ease july 2012Importing with ease july 2012
Importing with ease july 2012
 
Component based models and technology
Component based models and technologyComponent based models and technology
Component based models and technology
 
Migration from IBM DOORS 9 to DOORS Next Generation
Migration from IBM DOORS 9 to DOORS Next GenerationMigration from IBM DOORS 9 to DOORS Next Generation
Migration from IBM DOORS 9 to DOORS Next Generation
 
software engineering with uml- activity diagram
software engineering with uml- activity diagramsoftware engineering with uml- activity diagram
software engineering with uml- activity diagram
 
XPages Workshop: Concepts And Exercises
XPages Workshop:   Concepts And ExercisesXPages Workshop:   Concepts And Exercises
XPages Workshop: Concepts And Exercises
 
Creating an artifact at the project level
Creating an artifact at the project levelCreating an artifact at the project level
Creating an artifact at the project level
 
Interaction Flow Modeling Language: updates on the Beta2 version - by the OMG...
Interaction Flow Modeling Language: updates on the Beta2 version - by the OMG...Interaction Flow Modeling Language: updates on the Beta2 version - by the OMG...
Interaction Flow Modeling Language: updates on the Beta2 version - by the OMG...
 

Viewers also liked (10)

Ci
CiCi
Ci
 
Build tool
Build toolBuild tool
Build tool
 
ETL
ETLETL
ETL
 
Jdbc
JdbcJdbc
Jdbc
 
Maven
MavenMaven
Maven
 
Web services engine
Web services engineWeb services engine
Web services engine
 
Ide benchmarking
Ide benchmarkingIde benchmarking
Ide benchmarking
 
Project excursion career_orientation
Project excursion career_orientationProject excursion career_orientation
Project excursion career_orientation
 
Training
TrainingTraining
Training
 
Digital marketing
Digital marketingDigital marketing
Digital marketing
 

Similar to Ejb

Aravind vinnakota ejb_architecture
Aravind vinnakota ejb_architectureAravind vinnakota ejb_architecture
Aravind vinnakota ejb_architecturetayab4687
 
Ejb course in-mumbai
Ejb course in-mumbaiEjb course in-mumbai
Ejb course in-mumbaivibrantuser
 
Real world java_ee_patterns
Real world java_ee_patternsReal world java_ee_patterns
Real world java_ee_patternsAlassane Diallo
 
ADVANCED JAVA MODULE I & II.ppt
ADVANCED JAVA MODULE I & II.pptADVANCED JAVA MODULE I & II.ppt
ADVANCED JAVA MODULE I & II.pptrani marri
 
EJB 3.0 - Yet Another Introduction
EJB 3.0 - Yet Another IntroductionEJB 3.0 - Yet Another Introduction
EJB 3.0 - Yet Another IntroductionKelum Senanayake
 
Ejb training institute in navi-mumbai
Ejb training institute in navi-mumbaiEjb training institute in navi-mumbai
Ejb training institute in navi-mumbaivibrantuser
 
Introduction to ejb and struts framework
Introduction to ejb and struts frameworkIntroduction to ejb and struts framework
Introduction to ejb and struts frameworks4al_com
 
Ejb - september 2006
Ejb  - september 2006Ejb  - september 2006
Ejb - september 2006achraf_ing
 
The Complete Spring Tutorial
The Complete Spring TutorialThe Complete Spring Tutorial
The Complete Spring Tutorialcribes
 
The Latest in Enterprise JavaBeans Technology
The Latest in Enterprise JavaBeans TechnologyThe Latest in Enterprise JavaBeans Technology
The Latest in Enterprise JavaBeans TechnologySimon Ritter
 

Similar to Ejb (20)

Aravind vinnakota ejb_architecture
Aravind vinnakota ejb_architectureAravind vinnakota ejb_architecture
Aravind vinnakota ejb_architecture
 
Ejb course in-mumbai
Ejb course in-mumbaiEjb course in-mumbai
Ejb course in-mumbai
 
Ejb notes
Ejb notesEjb notes
Ejb notes
 
Real world java_ee_patterns
Real world java_ee_patternsReal world java_ee_patterns
Real world java_ee_patterns
 
ADVANCED JAVA MODULE I & II.ppt
ADVANCED JAVA MODULE I & II.pptADVANCED JAVA MODULE I & II.ppt
ADVANCED JAVA MODULE I & II.ppt
 
EJB 2
EJB 2EJB 2
EJB 2
 
EJB 3.0 - Yet Another Introduction
EJB 3.0 - Yet Another IntroductionEJB 3.0 - Yet Another Introduction
EJB 3.0 - Yet Another Introduction
 
Ejb (1)
Ejb (1)Ejb (1)
Ejb (1)
 
Ejb training institute in navi-mumbai
Ejb training institute in navi-mumbaiEjb training institute in navi-mumbai
Ejb training institute in navi-mumbai
 
Introduction to ejb and struts framework
Introduction to ejb and struts frameworkIntroduction to ejb and struts framework
Introduction to ejb and struts framework
 
Ejbandjsp 200119145750
Ejbandjsp 200119145750Ejbandjsp 200119145750
Ejbandjsp 200119145750
 
Ejb - september 2006
Ejb  - september 2006Ejb  - september 2006
Ejb - september 2006
 
The Complete Spring Tutorial
The Complete Spring TutorialThe Complete Spring Tutorial
The Complete Spring Tutorial
 
Introcution to EJB
Introcution to EJBIntrocution to EJB
Introcution to EJB
 
J2EEFeb11.ppt
J2EEFeb11.pptJ2EEFeb11.ppt
J2EEFeb11.ppt
 
Ejb and jsp
Ejb and jspEjb and jsp
Ejb and jsp
 
The Latest in Enterprise JavaBeans Technology
The Latest in Enterprise JavaBeans TechnologyThe Latest in Enterprise JavaBeans Technology
The Latest in Enterprise JavaBeans Technology
 
Lec2 ecom fall16
Lec2 ecom fall16Lec2 ecom fall16
Lec2 ecom fall16
 
Design patterns
Design patternsDesign patterns
Design patterns
 
Ch4 ejb
Ch4 ejbCh4 ejb
Ch4 ejb
 

More from Mallikarjuna G D (20)

Reactjs
ReactjsReactjs
Reactjs
 
Bootstrap 5 ppt
Bootstrap 5 pptBootstrap 5 ppt
Bootstrap 5 ppt
 
CSS
CSSCSS
CSS
 
Angular 2.0
Angular  2.0Angular  2.0
Angular 2.0
 
Spring andspringboot training
Spring andspringboot trainingSpring andspringboot training
Spring andspringboot training
 
Hibernate
HibernateHibernate
Hibernate
 
Jspprogramming
JspprogrammingJspprogramming
Jspprogramming
 
Servlet programming
Servlet programmingServlet programming
Servlet programming
 
Servlet programming
Servlet programmingServlet programming
Servlet programming
 
Mmg logistics edu-final
Mmg  logistics edu-finalMmg  logistics edu-final
Mmg logistics edu-final
 
Interview preparation net_asp_csharp
Interview preparation net_asp_csharpInterview preparation net_asp_csharp
Interview preparation net_asp_csharp
 
Interview preparation devops
Interview preparation devopsInterview preparation devops
Interview preparation devops
 
Interview preparation testing
Interview preparation testingInterview preparation testing
Interview preparation testing
 
Interview preparation data_science
Interview preparation data_scienceInterview preparation data_science
Interview preparation data_science
 
Interview preparation full_stack_java
Interview preparation full_stack_javaInterview preparation full_stack_java
Interview preparation full_stack_java
 
Enterprunership
EnterprunershipEnterprunership
Enterprunership
 
Core java
Core javaCore java
Core java
 
Type script
Type scriptType script
Type script
 
Angularj2.0
Angularj2.0Angularj2.0
Angularj2.0
 
Git Overview
Git OverviewGit Overview
Git Overview
 

Recently uploaded

chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile servicerehmti665
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxvipinkmenon1
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLDeelipZope
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacingjaychoudhary37
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxPoojaBan
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Dr.Costas Sachpazis
 

Recently uploaded (20)

★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Call Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile serviceCall Girls Delhi {Jodhpur} 9711199012 high profile service
Call Girls Delhi {Jodhpur} 9711199012 high profile service
 
IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
Introduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptxIntroduction to Microprocesso programming and interfacing.pptx
Introduction to Microprocesso programming and interfacing.pptx
 
Current Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCLCurrent Transformer Drawing and GTP for MSETCL
Current Transformer Drawing and GTP for MSETCL
 
microprocessor 8085 and its interfacing
microprocessor 8085  and its interfacingmicroprocessor 8085  and its interfacing
microprocessor 8085 and its interfacing
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
Heart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptxHeart Disease Prediction using machine learning.pptx
Heart Disease Prediction using machine learning.pptx
 
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
Sheet Pile Wall Design and Construction: A Practical Guide for Civil Engineer...
 

Ejb

  • 1. June 21, 2017 www.snipe.co.in 1 Prepared :Snipe Team
  • 2. June 21, 2017 www.snipe.co.in 2 Enterprise Java Beans
  • 3. June 21, 2017 www.snipe.co.in 3  What Is EJB??  Key Features  Why EJB??  EJB V/S JavaBeans  EJB Architecture  EJB Container Services  Contracts  Modules  MVC Architecture  Analysis of Objects  Example of EJB Design,Usecases, UseCase Diagram  Summary Agenda
  • 4. June 21, 2017 www.snipe.co.in 4 What?? EJB is a widely-adopted server-side component architecture for J2EE. EJB components are designed to encapsulate business logic, and to protect the application developer from having to worry about system level issues. An EJB is just a collection of Java classes and XML file, bundled into a single unit. The Java classes must follow certain rules and provide certain callback methods. EJB is just a specification. It is not a product. EJBs are reusable components.
  • 5. June 21, 2017 www.snipe.co.in 5 Key Features  EJB architecture is inherently transactional, distributed, portable, multi-tier, scalable and secure.  EJB components are fully portable across any EJB server and any OS, work with any client.  Components are declaratively customized.  There are four major parts to every bean: • the home interface, • the remote interface, • the implementation class and • the XML deployment descriptor
  • 6. June 21, 2017 www.snipe.co.in 6 Why EJB?? EJB specification provides enterprise-level services, that is, it provides software services that are fundamental to an organization’s purpose. EJB’s API was designed to keep the application programmer from having to provide systems-level services, so that they are free to concentrate on business logic. A requirement of any of the services provided by an EJB container like transactions, scalability, persistence, security, future growth possibilities is an appropriate reason to use EJB in the design of the application.
  • 7. June 21, 2017 www.snipe.co.in 7 The JavaBeans architecture is meant to provide a format for general-purpose components whereas the EJB architecture provides a format for encapsulation and management of business logic. JavaBeans has tier of execution at Client and EJB has at Server (specifically business logic tier) In JavaBeans the runtime execution environment provides services like Java libraries, Java application etc. The EJB runtime environment provides services of Persistence, declarative transactions and security, connection pooling and lifecycle services. EJB Vs JavaBeans
  • 8. June 21, 2017 www.snipe.co.in 8 J2EE Application Server Application Logic DataClient RDBMS Corba Mail RMI JDBC Java Mail JMS JTA Session Bean EJB Container Entity Bean Client Application EJB Architecture
  • 9. June 21, 2017 www.snipe.co.in 9 Roles in EJB Development System Administrator Application Assembler Deployer App Server/EJB Container Provider EJB Provider
  • 10. June 21, 2017 www.snipe.co.in 10 Roles in EJB Development EJB provider - a person who develops EJB Components. EJB Deployer - a person responsible for deploying EJB’s in EJB server. Application Server/ EJB Container Vendor - one who provides application server on which the application is deployed. Application assembler - one who combine the EJB components with other software to make a complete application. System administrator - one who manages the application after it has been deployed into a target environment.
  • 11. June 21, 2017 www.snipe.co.in 11 EJB Container Services There are three basic ideas:  First, there are clearly defined responsibilities between the various parts of an application using EJB component namely the client, the EJB container and the EJB component. The definition of these responsibilities is formally known as a contract. Second, the services that the container provides are defined in such a way that they are orthogonal to the component. In other words, security, persistence, transactions are separate from the Java files that implement the business logic of the component. Third, the container interposes on each and every call to an EJB component so that it can provide its services. In other words, the container puts itself between the client and the component on every single business method call.
  • 12. June 21, 2017 www.snipe.co.in 12 Contracts EJB Container/Application Server Enterprise Java Beans C Client
  • 13. • The developer of the EJB component must implement the business methods in the implementation class • The bean provider must implement the ejbCreate(), ejbPostCreate(),ejbRemove() and the ejbFind<METHOD>() methods if the bean is an entity with bean managed persistence. • The bean provider must define the enterprise bean’s home and remote interfaces. Rules for the Bean Programmer
  • 14. June 21, 2017 www.snipe.co.in 14 • For session beans, the bean provider must implement the container callbacks defined in the javax.ejb.SessionBean interface • For entity beans, the provider must implement the container callbacks defined in the javax.ejb.EntityBean interface • The bean provider must not use programming practices that would interfere with the container’s runtime management of the enterprise bean instances Rules for the Bean Programmer
  • 15. June 21, 2017 www.snipe.co.in 15 Modules Interposition Diagram Client Remote Stub Remote Stub Container Generated Class EJB Netw ork
  • 16. June 21, 2017 www.snipe.co.in 16 Working With EJBs: The Enterprise JavaBeans specification is written for three audiences: The Client developer The EJB developer The EJB container developer
  • 17. June 21, 2017 www.snipe.co.in 17 EJB Clients are applications that access EJB components in EJB containers. There are two possible types: The first category is application clients which are stand-alone applications accessing the EJB components using the RMI-IIOP protocol. The second category of application clients are components in the web container. They are java servlets and JSPs which also access the EJB components via the RMI-IIOP protocol. EJB Clients
  • 18. June 21, 2017 www.snipe.co.in 18 The client has a smaller set of concerns then a bean developer with regard to using EJBs. Basically, he need to know : how to find or create a bean, how to use its methods and how to release its resources The client need not worry about the implementation of the EJB, callbacks that the EJB container will make on the EJB or nature of the services provided to the EJB. Client Developer’s View
  • 19. June 21, 2017 www.snipe.co.in 19  Home Interface : • It is primarily for the life cycle operations of the bean: creating, finding, and removing EJBs. • The home interface is not associated with a particular bean, just with a type of bean. Remote Interface : • It is for business methods. Logically, it represents a particular bean on the server. • The remote interface also provides some infrastructure methods associated with a bean instance, rather than a bean type. EJB’s Interfaces
  • 20. June 21, 2017 www.snipe.co.in 20 Package orderMgmt; import java.util.properties; import java.naming.Context; // for name-to-object findings import java.naming.InitialContext;// context for naming operations public class Client { try { Properties prop = new Properties(); // server dependent properties for InitialContext prop.put(Context.INITIAL_CONTEXT_FACTORY, “org.jnp.interfaces.NamingContextFactory”); prop.put(Context.PROVIDER_URL, “localhost:1099”); Context ctx = new InitialContext(prop); Object objref = ctx.lookup(“OrderManagement”); Client.java Continued..
  • 21. June 21, 2017 www.snipe.co.in 21 // casting home interface reference to the OrderManagementHome OrderManagementHome home = (OrderManagementHome) javax.rmi.PortableRemoteObject.narrow (objref,OrderManagementHome.class); // home interface to create an instance of the OrderManagement OrderManagement orderManagement = home.create(); // calling placeOrder() orderManagement.placeOrder("Dan OConnor", "Wrox books on programming", 1000); orderManagement.remove(); System.out.println("Order successfully placed."); } catch (Exception e) { e.printStackTrace(); } } }
  • 22. June 21, 2017 www.snipe.co.in 22  Main responsibility is write business logic and structure the code in a particular structure.  The structure has 4 files, the home interface, remote interface, business logic class file and the XML file.  The XML file called the deployment descriptor, contains • The structural information about the bean, • Declares the bean’s external dependencies and • Specifies certain information about how services such as transaction and security work. Bean Programmer’s View
  • 23. June 21, 2017 www.snipe.co.in 23 package javax.ejb; public interface javax.ejb.EJBObject extends java.rmi.Remote { EJBHome getEJBHome() throws java.rmi.RemoteException; Handle getHandle() throws java.rmi.RemoteException; Object getPrimaryKey() throws java.rmi.RemoteException; boolean isIdentical(EJBObject obj) throws java.rmi.RemoteException; void remove() throws java.rmi.RemoteException; } Interface EJB Object:
  • 24. June 21, 2017 www.snipe.co.in 24 package orderMgmt; import javax.ejb.*; public interface OrderManagement extends javax.ejb.EJBObject { public void placeOrder(String custName, String prodName, int quantity) throws java.rmi.RemoteException; public void cancelOrder(String custName, String prodName) throws java.rmi.RemoteException; public boolean isShipped(String custName, String prodName) throws java.rmi.RemoteException; } Order Management Code:
  • 25. June 21, 2017 www.snipe.co.in 25 package orderMgmt; import javax.ejb.*; public class OrderManagementEJB implements javax.ejb.SessionBean { public void placeOrder(String custName, String prodName, int quantity) { // ... Business logic ...} public void cancelOrder(String custName, String prodName) { // ... Business logic ...} public boolean isShipped(String custName, String prodName) { // ... Business logic … return true;} OrderManagementBean code: Continued…
  • 26. June 21, 2017 www.snipe.co.in 26 public void ejbCreate() { // Can be empty } public void ejbRemove() { // Can be empty } public void ejbActivate() { // Can be empty} public void ejbPassivate() { // Can be empty} public void setSessionContext( SessionContext ctx ) { // Can be empty} }
  • 27. June 21, 2017 www.snipe.co.in 27 Package javax.ejb; public interface EJBHome extends java.rmi.Remote { EJBMetaData getEJBMetaData () throws java.rmi.RemoteException; HomeHandle getHomeHandle() throws java.rmi.RemoteException; void remove(Handle handle) throws java.rmi.RemoteException, java.ejb.RemoveException; void remove(Object primary key) throws java.rmi.RemoteException, java.ejb.RemoveException; } Interface EJBHome:
  • 28. June 21, 2017 www.snipe.co.in 28 package orderMgmt; import javax.ejb.*; public interface OrderManagementHome extends javax.ejb.EJBHome { public OrderManagement create() throws java.rmi.RemoteException, javax.ejb.CreateException; } OrderManagementHome Code:
  • 29. June 21, 2017 www.snipe.co.in 29 <?xml version=“1.0”?> <ejb-jar> <enterprise-beans> <session> <ejb-name>OrderManagement</ejb-name> <home>orderMgmt.OrderManagementHome</home> <remote>orderMgmt.OrderManagement</remote> <ejb-class>orderMgmt.OrderManagementBean</ejb-class> <session-type>Stateless</session-type> <transaction-type>Container</transaction-type> </session> </enterprise-beans> The XML file:ejb-jar.xml: Continued..
  • 30. June 21, 2017 www.snipe.co.in 30 <assembly-descriptor> <container-transaction> <method> <ejb-name>OrderManagement</ejb-name> <method-name>*</method-name> </method> <trans-attribute>Required</trans-attribute> </container-transaction> </assembly-descriptor> </ejb-jar>
  • 31. June 21, 2017 www.snipe.co.in 31 META -INF ejb-jar.xml orderMgmt OrderManagement.class OrderManagementHome.class OrderManagementBean.class Structure of JAR file:
  • 32. June 21, 2017 www.snipe.co.in 32 Three classes of objects in MVC architecture: Model : This is the data and business-logic component. It can serve multiple views. View : This is the presentation component or the user-interface component. There can be different presentations of a single model. Controller : This is the component that responds to user input. Translates user-interface events into changes to the model and defines the way the user-interface reacts to those events. MVC Architecture
  • 33. June 21, 2017 www.snipe.co.in 33 Implementation of MVC in a web site Controller Model Browser Client view1.jsp view2.jsp view3.jsp Main.jsp Views 1 2 3 4 5
  • 34. June 21, 2017 www.snipe.co.in 34 Analysis Objects  Control objects provide services to the application. They model functionality that is not naturally associated with a particular entity or interface. Control objects should be represented by session beans in the implementation.  Entity objects model those business objects that should maintain their state after the use case completes. This means they represent data in the database. Entity beans are often represented by entity beans in the implementation model.  Interface Object is responsible for controlling access to the EJB tier from any client. An interface object should always be represented by a session bean in the implementation. Ex : controller servlet for the web application’s model-view- controller architecture.
  • 35. June 21, 2017 www.snipe.co.in 35 Consider the case of a company that develops products, takes orders for those products, and then manufactures and ships them. Actors in the company : An engineer, a web customer, A phone operator who takes orders from a catalog, A floor manager who manages the manufacturing process, A crew member that actually builds the product ordered and a manager who tracks overdue orders. An Example of EJB Design:
  • 36. June 21, 2017 www.snipe.co.in 36 Create a Product Place an Order Cancel an Order Select an Order for Manufacture Build a Product Ship an Order List Overdue Orders Use Cases
  • 37. June 21, 2017 www.snipe.co.in 37 Use case diagram from analysis Engineer Customer Operator Manager Crew M’ment Create Product Place Order Cancel Order Select Order Build Product Ship an Order Overdue Orders
  • 38. June 21, 2017 www.snipe.co.in 38 EJBs are intended for transactional systems. EJBs are portable, reusable server-side components that execute in a container. Assist developer productivity, extend application capability, and improve system stability. Are accessible from many different types of clients. There are three types of beans : stateful session, stateless session, and entity. Continued.. Summary
  • 39. June 21, 2017 www.snipe.co.in 39 There are four major parts to every bean: • The home interface, the remote interface, the implementation class, and the XML deployment descriptor. • The enterprise bean developer must follow certain rules to get the benefits of EJB technology. • The roles of EJBs can be understood by analyzing a model of your enterprise in terms of interface, control and entity objects.
  • 40. June 21, 2017 www.snipe.co.in 40 Thank You