+ All Categories
Home > Documents > Component Patterns Architecture and Applications with EJB

Component Patterns Architecture and Applications with EJB

Date post: 07-Jan-2016
Category:
Upload: jeslyn
View: 38 times
Download: 0 times
Share this document with a friend
Description:
Component Patterns Architecture and Applications with EJB. Markus Völter MATHEMA AG [email protected]. Component Patterns. Roadmap. Patterns and Pattern Languages Basic Principles Core Patterns. Patterns and Pattern Languages. Component Patterns. Form of the patterns here. - PowerPoint PPT Presentation
38
Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG Component Patterns Architecture and Applications with EJB Markus Völter MATHEMA AG [email protected]
Transcript
Page 1: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component PatternsArchitecture and Applications with EJB

Markus VölterMATHEMA AG

[email protected]

Page 2: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Roadmap

Patterns and Pattern Languages

Basic Principles

Core Patterns

Component Patterns

Page 3: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Patterns and Pattern Languages

Page 4: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Form of the patterns here

Alexandrian Form Pattern consists of

NameContextProblemBodySolutionResulting ContextExamples

Component Patterns

Page 5: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Basic Principles

Page 6: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Separation of Concerns

Problem:Technology is changing fast. Your business is changing fast. The changes happen at different speeds.

Solution:Separate functional and technical concerns Implement them separately using different software

artifacts. Reuse and evolve each of them separately

Component Patterns

Page 7: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Multitier Architecture

Problem:Enterprise applications should be scalable They must be simple to deploy Different user interfaces are requiredThe data should be stored centrally

Solution:Split the application system into several layers Allow remote access to each of these layers Introduce a specific layer for the business logic

Component Patterns

Page 8: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Core Patterns

Page 9: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component

Context:You have Separated Concerns. Functional part is “one

chunk”.

Problem:Your business (requirements) is changing quickly.Need reuse on enterprise level, i.e. on high granularity level Want to evolve the parts of your system(s) independently

Solution:Decompose your application into several componentsThey do not directly depend on other components An application consists of loosely coupled components

Component Patterns

Page 10: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component

Component Patterns

MonolithicApplication withfeatures A, B, C

ComponentA

ComponentB

ComponentC

decompose

Page 11: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component Interface

Context:You Decomposed functional requirements into Components.

Now: “reassemble” app by letting components collaborate.

Problem:Components should not depend on other components’

implementations You do not even want to know how another component is

implemented

Solution:Define public interface to the component Client accesses a Component using the interface only Accessing this interface should be standardized

Component Patterns

Page 12: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component Interface

Component Patterns

ClientComponent IFComponentB

ComponentB

Component A

IFComponentA1

IFComponentA2

Page 13: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Container

Context: You have decided to Separate Concerns.

Problem:Components contain functional logicNow you need something for the technical parts Need to recombine functional and technical requirements into a

complete application.

Solution:Create a container for the Components. Responsible to enforce technical requirements on the

components Uses standardized frameworks and other techniques such

as code generation.

Component Patterns

Page 14: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Container

Component Patterns

Container

ComponentB

ComponentA

ComponentA

ComponentA

ComponentB

Page 15: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component Bus

ContextYou have a Container to host your Components.

ProblemContainers (and therefore, your components) usually reside

on different machines that your client application You don’t want to depend on the semantics of the underlying

transport protocol.

SolutionComponent bus, as logical communication

infrastructureHide the underlying low-level transport protocolThe Container and the clients are attached to the bus.

Component Patterns

Page 16: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component Bus

Component Patterns

Client Component

Component Bus

Invocation Data

Invocation

Additional Data

Page 17: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Distinguish Identities

ContextYour design results in potentially many logical component

identities, especially when you use Entity Components.

ProblemMany logical component instances referenced by clients at

the same time Container will run into resource problems

SolutionDistinguish logical and physical identities Clients never have a reference to the physical

component instance, they use a ProxyContainer is free to assign physical instances to

logical identities

Component Patterns

Page 18: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Distinguish Identities

Component Patterns

Container

Component A

Client

delegates invocation

Proxy A

invocation

Proxy B

reference only

creates instance ofComponent B wheninvocation arrives

Page 19: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Lifecycle Callback

ContextYour Components live in a Container and you

Distinguish Identities.

ProblemPhysical component it has to change its logical identity Component will have to be initialized after birth and it

needs to return its resources before it dies

SolutionProvide a set of lifecycle callback operations. The Container calls them whenever it feels it is

necessary.

Component Patterns

Page 20: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Client Library

ContextYou are using a Component Bus to access your Components

in the Container.

ProblemThe client application needs to access the Component Bus Needs to know the interfaces of the components Every method invocation must contain security and other

information Specific marshalling code may also be necessary

SolutionCreate a client library upon Component Installation Contains all the interfaces, and other generated code

Component Patterns

Page 21: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

C O L L A B O R A T I O N

Component Patterns

Container

ComponentA

Client

delegates invocation

ContainerProxy A

invocation

LifecycleCallback

ComponentInterface A

Client Library

ComponentInterface A

Component Bus

Proxy A

Page 22: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component Home

ContextYour application is assembled of collaborating, loosely

coupled components, i.e. one Component uses the services of another Component.

ProblemA Component needs to find (or create new) instances of

other Components You might not know the exact procedure to do thisTechnical concern: Don’t want that in component code

SolutionFor each Component, provide a management interface It can provide different ways (operations) how to

create and find component instances

Component Patterns

Page 23: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component Home

Component Patterns

ComponentA IFComponentB

ComponentB

IFComponentBHome

create..(..) : IFComponentBfind..(..) : IFComponentB

returns

ComponentBHome

create..(..) : IFComponentBfind..(..) : IFComponentB

creates/ finds

Page 24: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Naming

ContextYou have provided a Component Home for your components

to manage the instances of a specific component type. You are using Managed Resources in the Container.

ProblemTo access the Component Home or Managed Resources, you

need to get the reference of the home or of the service.

SolutionProvide a naming service which maps names to object

references Can be used uniformly for any kind of

object/component/resource It can be accessed by clients using a well-known

object reference.

Component Patterns

Page 25: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Naming

Component Patterns

Component AHome

lookup("com/ mycompany/components/ ComponentA")

Component BHome

Ressource X

Ressource Y

Naming

com mycompany components ComponentA ComponentB resources ResourceX ResourceY

Client

Component A Home

Page 26: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

C O L L A B O R A T I O N

Component Patterns

Page 27: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Annotations

ContextYou have implemented a Container. Programmer programs

functional aspects only.

Problem Programmers will need a way to control the behavior of the

components in the Container You need a way to tell the Container how it should handle

certain aspects

SolutionAllow the developer to annotate the components The Container is free to implement the AnnotationsUses standardized frameworks and other techniques

such as code generation.

Component Patterns

Page 28: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component Installation

ContextYou express your technical requirements regarding a

Component using Annotations and the Container provides a way to implement these.

ProblemAnnotations state technical concerns declaratively Code required to realize these at runtimeConsistency has to be checked in advance

Solution Include an explicit installation step for ComponentsProvide your Component’s code and the Annotations

to the Container, Container creates necessary code

Component Patterns

Page 29: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Interception

ContextYou have created a Container which serves as a place to live

for the Components. You use Annotations to tell the Container how it should handle a Component. You use the concept of Distinguishing Identities.

ProblemContainer has to implement the behaviour specified in the

Annotations How can a Container insert specific code into prebuilt

Components

SolutionAllow the Container to intercept any request before it

reaches the destination Component Provide a standardized interface for interceptors.

Component Patterns

Page 30: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component Context

ContextYour application is decomposed into Components which are

executed in a Container.

ProblemComponents need to access resources outside of itself

(in the Container). Need to control some aspects of the Container

(e.g. Tx state)

SolutionSupply each component instance with a Component

Context at the beginning of its lifecycleContext provides operations, with which the

Component can access the environment

Component Patterns

Page 31: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Component Context

Component Patterns

Container

ComponentA

Naming Databases

Services

Instance Pool

Cache

Context

Page 32: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Managed Resource

ContextYou run your Components in a Container, and they can access

parts of the world outside using a Component Context. Problem

Components will need to access several external resourcesYou do not know, how many physical component instances you

will have You do not want to limit the portability of your components by

depending on the type or location of a specific resource Solution

Let the Container manage resources It creates pools for every configured resource Access Managed Resources in Naming using logical

names onlyLet the Container do the mapping to real Naming name

Component Patterns

Page 33: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Invocation Context

Context You are using a Container to take care of the technical

requirements. Among other things, the Container’s job to manage transactions and security.

ProblemContainer needs to know more than just the name of the

invoked method and the arguments when an operation is called

This cannot be supplied with a normal method call

Solution Include an invocation context with each operation It can be inserted or created by using Interception The context can include any kind of information, only

the Container must know how to handle it

Component Patterns

Page 34: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Instance Pooling

Context You run your Components in a Container. You Distinguish

Identities and provide Lifecycle Callbacks operations in your Component.

Problem Physical instance creation in the Container is expensive. It is therefore useful to minimize the number of creations and

destructions especially in the case of Entity Components

SolutionUse instance pooling together with Lifecycle Callbacks Keep a number of component instances readyLet them “become” different logical instances at

different times.

Component Patterns

Page 35: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Passivation

ContextYou run your Components in a Container. You Distinguish

Identities and provide Lifecycle Callbacks operations in your Component.

ProblemSession Components need to be accessible as long as a client

does not destroy them They might not be used for a very long time in between

invocations

SolutionAllow the Container to remove unused Component

instances temporarily from memory Attributes are stored persistently and are reloaded

upon reactivation.

Component Patterns

Page 36: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Configuration Parameters

Context

You want to reuse your Components. To achieve reuse, you need a certain degree of variability in your Component implementation.

Problem you need a way to “pass (configuration) information to the

Component” This information must be accessible from within the

Component Solution

The Component Context should allow the Component to access configuration parameters

defined for the Component during Component Installation.

Component Patterns

Page 37: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Server Component PatternsArchitecture and Applications with EJB

Markus VölterAlexander SchmidEberhard Wolff

Wiley Pattern SeriesFrühjahr 2002

Page 38: Component Patterns Architecture and Applications with EJB

Component Patterns – Architecture and Applications with EJB copyright © 2001, MATHEMA AG

Thank you...Questions,Critics ?

Component Patterns


Recommended