SlideShare ist ein Scribd-Unternehmen logo
1 von 30
Java EE – An Introduction to Java
       Enterprise Edition




                                    1
Agenda
• What is Java EE?
• Why Java EE?
• Java EE
  – Deliverables (what and why?)
  – Basic Architecture
  – Components and Containers
  – Roles
  – Lifecycle
                                   2
Overview
• A collection of enterprise technologies
• Provides a component based approach to the design,
  development, assembly and deployment of enterprise
  applications
• Enables solutions for developing, deploying and
  managing n-tier server-centric enterprise applications
• An open industry standard (initiative led by Sun
  Microsystems(now Oracle))




                                                           3
Mission
• To provide a platform-independent, portable, multi-
  user, secure, and standard enterprise-class platform
  for server side deployments written in the Java
  Language
• Implement a standardized execution environment for
  distributed enterprise applications




                                                         4
The Java Platform
 Hand-held                                       Workgroup            High-end
  devices                Desktop                  Servers             Servers




         Micro Edition
         Micro Edition             Standard Edition
           (Java ME)
          (Java ME)                   (Java SE)         Enterprise Edition
                                                          (Java EE)




                                                                             5
Java EE Bundle
 • APIs and technology specification
    – A collection / integration of various enterprise APIs
 • Development and Deployment platform
    – A unified platform for server-side development
 • Reference Implementation
    – Implements the Java EE specification &
      demonstrates its viability
 • Compatibility tests
    – Certifies a Java EE product, confirms application
      portability
 • Java EE Blueprints
    – Programming model, patterns, guidelines, best
      practices
                                                              6
Why Java EE?
Platform value for developers
  – Can use any Java EE implementation for
    development and deployment
  – Vast amount of Java EE community resources
  – Can use off-the-shelf 3rd party components




                                                 7
Why Java EE?
Platform value to vendors
• Vendors work together on specifications
  and then compete in implementations
  – In the areas of Scalability, Performance,
    Reliability, and so on
• Freedom to innovate while maintaining the
  portability of applications

                                                8
Why Java EE?
Platform value to Business customers
• Application portability
• Many implementation choices are possible based
  on various requirements
   – Price (free to high-end), scalability (single CPU to
     clustered model), reliability, performance, tools & more
• Best of breed of applications and platforms
• Large developer pool

                                                            9
Evolution of Distributed
     Transactional Computing
• Overview of technologies leading to
  distributed computing
  – 1 tier, 2 tier, 3 tier, n tier architecture
• Application Servers
  – Proprietary
  – Open standard



                                                  10
N-tier J2EE Architecture
                                   EJB Application Server

         RMI-IIOP
                                                 Container




         HTTP
     (JSP/Servlets)

                      Web Server




                                                             11
Java EE Architecture – Tiers
     and Components View




Client Tier Web Tier Business Tier Data Tier
                                               12
Java EE Server and Containers
                Java EE Server

  Web Browser    Servlet     JSP Page

                    Web Container
  Application
    Client                                Database

  Application   Enterprise   Enterprise
    Client        Bean         Bean
   Container
                    EJB Container
     Client


                                                13
Java EE Components
• The Java EE platform uses a multi-tiered distributed
  application model
• The Java EE application components parts comprise:
   – Client-tier components (run on the client machine).
   – Web-tier components (run on the Java EE server).
   – Business-tier components (run on the Java EE
     server).
   – Enterprise information system (EIS)-tier software
     (runs on the EIS server).
  Essentially considered to be three-tiered application, because of
 being distributed over client, J2EE server and the database.

                                                                       14
Java EE Components: Client Tier
• Client
   – Web clients (web-browser, web pages, applets)
   – Application client (application user interface built
     using Swing or AWT, or a command line interface)
   – CORBA IIOP complaint clients




                                                            15
Java EE Components: Web-tier
• Web components
  – Servlets or JSP pages
  – Java Beans (optional)




                               16
Java EE Components: Business tier
• Business Components
   – Enterprise Beans handle the application logic
      • Separates business process (session beans) and
        data component (entity beans)
   – Applications requiring messaging facility use JMS




                                                     17
Java EE Components: Data tier
 • Application Database Server
    – Any relational database (eg Oracle, MS SQL, etc)
 • Enterprise Information System (EIS)
    – Includes enterprise systems like ERP, mainframe
      transaction processing, database systems and other
      legacy information systems
    – J2EE applications often rely on this tier to store the
      enterprise’s business critical data




                                                         18
Container Services
 •   Security
 •   Transaction Management
 •   Naming and directory
 •   Remote connectivity
 •   Lifecycle management
 •   Persistence
 •   Concurrency
 • Resource Pooling



                              19
Container Types
• The deployment process installs Java EE application
  components in the Java EE containers
   – EJB container
   – Web container
   – Application client container / Applet container
• The Java EE server provides EJB and Web containers
  and is the operating run-time environment




                                                    20
Java EE Technologies
• Component Technology
   – Applet, application clients, Enterprise beans, web
     components (JSP / Servlets)
• Service Technology
   – JDBC, JNDI, JTS, Connector Architecture, Web
     Services etc
• Communication Technology
   – RMI-IIOP
   – Internet protocols (HTTP, SSL, TCP/IP)
   – Messaging (JMS, Java Mail)

                                                          21
Java EE APIs (Bundled)
Java SE
      Java SDK
       • Java Standard APIs
Java EE
      Enterprise JavaBeans (EJB)
       - Aritecture for building server-side components
      Java Remote Method Invocation (RMI) & RMI-IIOP
       - Method invocation across Java virtual machines. Can also
          integrate with other clients comfirming CORBA IIOP
          specification
      Java Naming and Directory Interface (JNDI)
       - Naming service for locating resources over the network
      Java Database Connectivity (JDBC)
       - Java interface to relational database
      Java Servlets & Java Server Pages (JSP)
        - Technology allowing dymanic web content generation
      Java Activation Framework (JAF)
      J2EE Connector Architecture
                                                                    22
Java EE APIs (Bundled) contd …
 • Java Messaging Service (JMS)
    – Enables asynchronous communication, including point-to-point
      and publish/subscribe messing
 • Java IDL
    – Java technology based CORBA ORB implementing a subset
      of CORBA specification
 • Java Mail
    – Mailing APIs
 • Java API for XML Parsing (JAXP)
    – XML parsing and manipulation. Used to describe EJB
      components, file scripts
 • Java Transaction API (JTA) and Java Transaction Service (JTS)
    – Used to manage transactions
 • Java Authentication and Authorization Service (JAAS)
    – Security services API
 • Others (performance specific, not mandated by the specification)
    – Load balancing, data caching, transparent fail over, etc
                                                                 23
Java EE Application Assembly
and Deployment
• Applications are packaged into one or more standard units
for deployment to any Java EE platform-compliant system
• Each unit contains
   - a functional component or components (enterprise bean,
JSP page, servlet, applet, etc.),
    - a standard deployment descriptor that describes its
content,
     - J2EE declarations which have been specified by the
application developer and assembler.
• Once the unit is produced, is ready for deployment



                                                              24
Deployment
Descriptors (XML Files)

                                       Java EE Unit
                          Deployment   (war, jar or ear)
         EJB
                             Tool
         JSP
                                                 Deploy
        Servlet

                                        J2EE Server
        HTML


                                                    25
Java EE Roles
• Java EE product provider
   – One who designs and makes available the Java EE
     platform, APIs and other features defined in the
     Java EE specification
• Component Provider
   – One who provides web components, enterprise
     beans, applets or application clients for use in J2EE
     applications.
• Application Assembler
   – One who gets the components and assembles it
     into an application


                                                       26
Java EE Roles (continued…)
   • Application Deplorer and Administrator
      – One who configures and deploys the J2EE
        application, administers and monitors the
        deployment
   • Tool provider
      – One who creates development, assembly and
        packaging tools used by component providers,
        assemblers and deplorers




                                                       27
Java EE Lifecycle




                    28
Java EE Application Anatomies
• 4-tier Java EE applications
   – HTML client, JSP/Servlets, EJB, JDBC/Connector
• 3-tier Java EE applications
   – HTML client, JSP/Servlets, JDBC
• 3-tier Java EE applications
   – EJB standalone applications, EJB, JDBC/Connector
• B2B Enterprise applications
   – Java EE platform to Java EE platform through the
     exchange of JMS or XML-based message

                                                        29
References
 • Java EE Tutorial, Sun Microsystems (now Oracle)
 • Simplified guide to the Java EE Platform, Enterprise
   Edition, Sun Microsystems (now Oracle)
 • Sun TechDays Conference 2000-2001 slides,
    – Sun Microsystems
 • Mastering Enterprise JavaBeans, 3rd Edition
    – By Ed Roman




                                                          30

Weitere ähnliche Inhalte

Was ist angesagt?

Summer training java
Summer training javaSummer training java
Summer training javaArshit Rai
 
Lecture 19 dynamic web - java - part 1
Lecture 19   dynamic web - java - part 1Lecture 19   dynamic web - java - part 1
Lecture 19 dynamic web - java - part 1Д. Ганаа
 
J2EE and layered architecture
J2EE and layered architectureJ2EE and layered architecture
J2EE and layered architectureSuman Behara
 
Chapter 12:Understanding Server-Side Technologies
Chapter 12:Understanding Server-Side TechnologiesChapter 12:Understanding Server-Side Technologies
Chapter 12:Understanding Server-Side TechnologiesIt Academy
 
Introduction to Java EE (J2EE)
Introduction to Java EE (J2EE)Introduction to Java EE (J2EE)
Introduction to Java EE (J2EE)Atit Patumvan
 
Building Enterprise Application with J2EE
Building Enterprise Application with J2EEBuilding Enterprise Application with J2EE
Building Enterprise Application with J2EECalance
 
Javaee intro
Javaee introJavaee intro
Javaee introharis147
 
F428435966 odtug web-logic for developers
F428435966 odtug   web-logic for developersF428435966 odtug   web-logic for developers
F428435966 odtug web-logic for developersMeng He
 
Ebs troubleshooting con9019_pdf_9019_0001
Ebs troubleshooting con9019_pdf_9019_0001Ebs troubleshooting con9019_pdf_9019_0001
Ebs troubleshooting con9019_pdf_9019_0001jucaab
 
Chapter 10:Understanding Java Related Platforms and Integration Technologies
Chapter 10:Understanding Java Related Platforms and Integration TechnologiesChapter 10:Understanding Java Related Platforms and Integration Technologies
Chapter 10:Understanding Java Related Platforms and Integration TechnologiesIt Academy
 
Intorduction to struts
Intorduction to strutsIntorduction to struts
Intorduction to strutsAnup72
 

Was ist angesagt? (19)

Summer training java
Summer training javaSummer training java
Summer training java
 
Lecture 19 dynamic web - java - part 1
Lecture 19   dynamic web - java - part 1Lecture 19   dynamic web - java - part 1
Lecture 19 dynamic web - java - part 1
 
Java J2EE
Java J2EEJava J2EE
Java J2EE
 
Java ee introduction
Java ee introductionJava ee introduction
Java ee introduction
 
J2ee seminar
J2ee seminarJ2ee seminar
J2ee seminar
 
Chapter2 j2ee
Chapter2 j2eeChapter2 j2ee
Chapter2 j2ee
 
J2EE and layered architecture
J2EE and layered architectureJ2EE and layered architecture
J2EE and layered architecture
 
Chapter 12:Understanding Server-Side Technologies
Chapter 12:Understanding Server-Side TechnologiesChapter 12:Understanding Server-Side Technologies
Chapter 12:Understanding Server-Side Technologies
 
Ravi Kiran Resume
Ravi Kiran ResumeRavi Kiran Resume
Ravi Kiran Resume
 
Introduction to Java EE (J2EE)
Introduction to Java EE (J2EE)Introduction to Java EE (J2EE)
Introduction to Java EE (J2EE)
 
Spring
SpringSpring
Spring
 
Building Enterprise Application with J2EE
Building Enterprise Application with J2EEBuilding Enterprise Application with J2EE
Building Enterprise Application with J2EE
 
J2ee
J2eeJ2ee
J2ee
 
Javaee intro
Javaee introJavaee intro
Javaee intro
 
J2ee
J2eeJ2ee
J2ee
 
F428435966 odtug web-logic for developers
F428435966 odtug   web-logic for developersF428435966 odtug   web-logic for developers
F428435966 odtug web-logic for developers
 
Ebs troubleshooting con9019_pdf_9019_0001
Ebs troubleshooting con9019_pdf_9019_0001Ebs troubleshooting con9019_pdf_9019_0001
Ebs troubleshooting con9019_pdf_9019_0001
 
Chapter 10:Understanding Java Related Platforms and Integration Technologies
Chapter 10:Understanding Java Related Platforms and Integration TechnologiesChapter 10:Understanding Java Related Platforms and Integration Technologies
Chapter 10:Understanding Java Related Platforms and Integration Technologies
 
Intorduction to struts
Intorduction to strutsIntorduction to struts
Intorduction to struts
 

Ähnlich wie Introduction to java_ee

Summer training java
Summer training javaSummer training java
Summer training javaArshit Rai
 
Enterprise application developement
Enterprise application developementEnterprise application developement
Enterprise application developementArchana Jha
 
Lecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.pptLecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.pptKalsoomTahir2
 
Enterprise java unit-1_chapter-1
Enterprise java unit-1_chapter-1Enterprise java unit-1_chapter-1
Enterprise java unit-1_chapter-1sandeep54552
 
IBM Websphere introduction and installation for beginners
IBM Websphere introduction and installation for beginnersIBM Websphere introduction and installation for beginners
IBM Websphere introduction and installation for beginnersShubham Gupta
 
Developing Enterprise Applications Using Java Technology
Developing Enterprise Applications Using Java TechnologyDeveloping Enterprise Applications Using Java Technology
Developing Enterprise Applications Using Java TechnologySimon Ritter
 
Glassfish JEE Server Administration - JEE Introduction
Glassfish JEE Server Administration - JEE IntroductionGlassfish JEE Server Administration - JEE Introduction
Glassfish JEE Server Administration - JEE IntroductionDanairat Thanabodithammachari
 
what is J2EE? different between java and j2EE
what is J2EE? different between java and j2EEwhat is J2EE? different between java and j2EE
what is J2EE? different between java and j2EEKarthikashree
 
Lecture 1: Introduction to JEE
Lecture 1:  Introduction to JEELecture 1:  Introduction to JEE
Lecture 1: Introduction to JEEFahad Golra
 
Web programming and development - Introduction
Web programming and development - IntroductionWeb programming and development - Introduction
Web programming and development - IntroductionJoel Briza
 
J2ee 2000
J2ee 2000J2ee 2000
J2ee 2000eaiti
 
WebSphere 6.1 Admin Course 1
WebSphere 6.1 Admin Course 1WebSphere 6.1 Admin Course 1
WebSphere 6.1 Admin Course 1odedns
 
The Java EE 7 Platform: Developing for the Cloud
The Java EE 7 Platform: Developing for the CloudThe Java EE 7 Platform: Developing for the Cloud
The Java EE 7 Platform: Developing for the Cloudcodemotion_es
 
SPEC INDIA Java Case Study
SPEC INDIA Java Case StudySPEC INDIA Java Case Study
SPEC INDIA Java Case StudySPEC INDIA
 

Ähnlich wie Introduction to java_ee (20)

J2 ee architecture
J2 ee architectureJ2 ee architecture
J2 ee architecture
 
Summer training java
Summer training javaSummer training java
Summer training java
 
Java EE 7 introduction
Java EE 7  introductionJava EE 7  introduction
Java EE 7 introduction
 
Enterprise application developement
Enterprise application developementEnterprise application developement
Enterprise application developement
 
Advance java1.1
Advance java1.1Advance java1.1
Advance java1.1
 
Lecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.pptLecture 19 - Dynamic Web - JAVA - Part 1.ppt
Lecture 19 - Dynamic Web - JAVA - Part 1.ppt
 
Enterprise java unit-1_chapter-1
Enterprise java unit-1_chapter-1Enterprise java unit-1_chapter-1
Enterprise java unit-1_chapter-1
 
IBM Websphere introduction and installation for beginners
IBM Websphere introduction and installation for beginnersIBM Websphere introduction and installation for beginners
IBM Websphere introduction and installation for beginners
 
Developing Enterprise Applications Using Java Technology
Developing Enterprise Applications Using Java TechnologyDeveloping Enterprise Applications Using Java Technology
Developing Enterprise Applications Using Java Technology
 
Glassfish JEE Server Administration - JEE Introduction
Glassfish JEE Server Administration - JEE IntroductionGlassfish JEE Server Administration - JEE Introduction
Glassfish JEE Server Administration - JEE Introduction
 
4. J2EE.pptx
4. J2EE.pptx4. J2EE.pptx
4. J2EE.pptx
 
what is J2EE? different between java and j2EE
what is J2EE? different between java and j2EEwhat is J2EE? different between java and j2EE
what is J2EE? different between java and j2EE
 
Lecture 1: Introduction to JEE
Lecture 1:  Introduction to JEELecture 1:  Introduction to JEE
Lecture 1: Introduction to JEE
 
Web programming and development - Introduction
Web programming and development - IntroductionWeb programming and development - Introduction
Web programming and development - Introduction
 
J2ee 2000
J2ee 2000J2ee 2000
J2ee 2000
 
J2EE day 1
J2EE day 1J2EE day 1
J2EE day 1
 
WebSphere 6.1 Admin Course 1
WebSphere 6.1 Admin Course 1WebSphere 6.1 Admin Course 1
WebSphere 6.1 Admin Course 1
 
Java language pppppt
Java language ppppptJava language pppppt
Java language pppppt
 
The Java EE 7 Platform: Developing for the Cloud
The Java EE 7 Platform: Developing for the CloudThe Java EE 7 Platform: Developing for the Cloud
The Java EE 7 Platform: Developing for the Cloud
 
SPEC INDIA Java Case Study
SPEC INDIA Java Case StudySPEC INDIA Java Case Study
SPEC INDIA Java Case Study
 

Introduction to java_ee

  • 1. Java EE – An Introduction to Java Enterprise Edition 1
  • 2. Agenda • What is Java EE? • Why Java EE? • Java EE – Deliverables (what and why?) – Basic Architecture – Components and Containers – Roles – Lifecycle 2
  • 3. Overview • A collection of enterprise technologies • Provides a component based approach to the design, development, assembly and deployment of enterprise applications • Enables solutions for developing, deploying and managing n-tier server-centric enterprise applications • An open industry standard (initiative led by Sun Microsystems(now Oracle)) 3
  • 4. Mission • To provide a platform-independent, portable, multi- user, secure, and standard enterprise-class platform for server side deployments written in the Java Language • Implement a standardized execution environment for distributed enterprise applications 4
  • 5. The Java Platform Hand-held Workgroup High-end devices Desktop Servers Servers Micro Edition Micro Edition Standard Edition (Java ME) (Java ME) (Java SE) Enterprise Edition (Java EE) 5
  • 6. Java EE Bundle • APIs and technology specification – A collection / integration of various enterprise APIs • Development and Deployment platform – A unified platform for server-side development • Reference Implementation – Implements the Java EE specification & demonstrates its viability • Compatibility tests – Certifies a Java EE product, confirms application portability • Java EE Blueprints – Programming model, patterns, guidelines, best practices 6
  • 7. Why Java EE? Platform value for developers – Can use any Java EE implementation for development and deployment – Vast amount of Java EE community resources – Can use off-the-shelf 3rd party components 7
  • 8. Why Java EE? Platform value to vendors • Vendors work together on specifications and then compete in implementations – In the areas of Scalability, Performance, Reliability, and so on • Freedom to innovate while maintaining the portability of applications 8
  • 9. Why Java EE? Platform value to Business customers • Application portability • Many implementation choices are possible based on various requirements – Price (free to high-end), scalability (single CPU to clustered model), reliability, performance, tools & more • Best of breed of applications and platforms • Large developer pool 9
  • 10. Evolution of Distributed Transactional Computing • Overview of technologies leading to distributed computing – 1 tier, 2 tier, 3 tier, n tier architecture • Application Servers – Proprietary – Open standard 10
  • 11. N-tier J2EE Architecture EJB Application Server RMI-IIOP Container HTTP (JSP/Servlets) Web Server 11
  • 12. Java EE Architecture – Tiers and Components View Client Tier Web Tier Business Tier Data Tier 12
  • 13. Java EE Server and Containers Java EE Server Web Browser Servlet JSP Page Web Container Application Client Database Application Enterprise Enterprise Client Bean Bean Container EJB Container Client 13
  • 14. Java EE Components • The Java EE platform uses a multi-tiered distributed application model • The Java EE application components parts comprise: – Client-tier components (run on the client machine). – Web-tier components (run on the Java EE server). – Business-tier components (run on the Java EE server). – Enterprise information system (EIS)-tier software (runs on the EIS server).  Essentially considered to be three-tiered application, because of being distributed over client, J2EE server and the database. 14
  • 15. Java EE Components: Client Tier • Client – Web clients (web-browser, web pages, applets) – Application client (application user interface built using Swing or AWT, or a command line interface) – CORBA IIOP complaint clients 15
  • 16. Java EE Components: Web-tier • Web components – Servlets or JSP pages – Java Beans (optional) 16
  • 17. Java EE Components: Business tier • Business Components – Enterprise Beans handle the application logic • Separates business process (session beans) and data component (entity beans) – Applications requiring messaging facility use JMS 17
  • 18. Java EE Components: Data tier • Application Database Server – Any relational database (eg Oracle, MS SQL, etc) • Enterprise Information System (EIS) – Includes enterprise systems like ERP, mainframe transaction processing, database systems and other legacy information systems – J2EE applications often rely on this tier to store the enterprise’s business critical data 18
  • 19. Container Services • Security • Transaction Management • Naming and directory • Remote connectivity • Lifecycle management • Persistence • Concurrency • Resource Pooling 19
  • 20. Container Types • The deployment process installs Java EE application components in the Java EE containers – EJB container – Web container – Application client container / Applet container • The Java EE server provides EJB and Web containers and is the operating run-time environment 20
  • 21. Java EE Technologies • Component Technology – Applet, application clients, Enterprise beans, web components (JSP / Servlets) • Service Technology – JDBC, JNDI, JTS, Connector Architecture, Web Services etc • Communication Technology – RMI-IIOP – Internet protocols (HTTP, SSL, TCP/IP) – Messaging (JMS, Java Mail) 21
  • 22. Java EE APIs (Bundled) Java SE Java SDK • Java Standard APIs Java EE Enterprise JavaBeans (EJB) - Aritecture for building server-side components Java Remote Method Invocation (RMI) & RMI-IIOP - Method invocation across Java virtual machines. Can also integrate with other clients comfirming CORBA IIOP specification Java Naming and Directory Interface (JNDI) - Naming service for locating resources over the network Java Database Connectivity (JDBC) - Java interface to relational database Java Servlets & Java Server Pages (JSP) - Technology allowing dymanic web content generation Java Activation Framework (JAF) J2EE Connector Architecture 22
  • 23. Java EE APIs (Bundled) contd … • Java Messaging Service (JMS) – Enables asynchronous communication, including point-to-point and publish/subscribe messing • Java IDL – Java technology based CORBA ORB implementing a subset of CORBA specification • Java Mail – Mailing APIs • Java API for XML Parsing (JAXP) – XML parsing and manipulation. Used to describe EJB components, file scripts • Java Transaction API (JTA) and Java Transaction Service (JTS) – Used to manage transactions • Java Authentication and Authorization Service (JAAS) – Security services API • Others (performance specific, not mandated by the specification) – Load balancing, data caching, transparent fail over, etc 23
  • 24. Java EE Application Assembly and Deployment • Applications are packaged into one or more standard units for deployment to any Java EE platform-compliant system • Each unit contains - a functional component or components (enterprise bean, JSP page, servlet, applet, etc.), - a standard deployment descriptor that describes its content, - J2EE declarations which have been specified by the application developer and assembler. • Once the unit is produced, is ready for deployment 24
  • 25. Deployment Descriptors (XML Files) Java EE Unit Deployment (war, jar or ear) EJB Tool JSP Deploy Servlet J2EE Server HTML 25
  • 26. Java EE Roles • Java EE product provider – One who designs and makes available the Java EE platform, APIs and other features defined in the Java EE specification • Component Provider – One who provides web components, enterprise beans, applets or application clients for use in J2EE applications. • Application Assembler – One who gets the components and assembles it into an application 26
  • 27. Java EE Roles (continued…) • Application Deplorer and Administrator – One who configures and deploys the J2EE application, administers and monitors the deployment • Tool provider – One who creates development, assembly and packaging tools used by component providers, assemblers and deplorers 27
  • 29. Java EE Application Anatomies • 4-tier Java EE applications – HTML client, JSP/Servlets, EJB, JDBC/Connector • 3-tier Java EE applications – HTML client, JSP/Servlets, JDBC • 3-tier Java EE applications – EJB standalone applications, EJB, JDBC/Connector • B2B Enterprise applications – Java EE platform to Java EE platform through the exchange of JMS or XML-based message 29
  • 30. References • Java EE Tutorial, Sun Microsystems (now Oracle) • Simplified guide to the Java EE Platform, Enterprise Edition, Sun Microsystems (now Oracle) • Sun TechDays Conference 2000-2001 slides, – Sun Microsystems • Mastering Enterprise JavaBeans, 3rd Edition – By Ed Roman 30