| Author |
Architectural patterns with EJB 3.0
|
wisdom wordsworth
Greenhorn
Joined: Nov 05, 2010
Posts: 2
|
|
What are popular architectural patterns using EJB 3.0.
One scenario i can think of is using
1) web2.0 front end(which one ???)----MVC(Struts 2.0,others ???)----EJB----JPA----ORM---DB
I want to know what is the common practice.....and other popular layers involving EJB 3.0
|
 |
Manuel Alberto Quero
Ranch Hand
Joined: Jul 17, 2009
Posts: 31
|
|
Java EE design patterns are divided into the following based on the layer.
Presentation Layer:
-Front Controller Design Pattern
-Composite View Design Pattern
-View Helper Design Pattern
-Dispatcher View Design Pattern
-Service To Worker Design Pattern
-Intercepting Filter Design Pattern
-Context Object Design Pattern
-Application Controller Design Pattern
-Fast Lane Reader
Business Layer:
-Business Delegate Design Pattern
-Service Locator Design Pattern
-Session Façade Design Pattern
-T O Assembler Design Pattern
-Transfer Object Design Pattern
-Value List Handler Design Pattern
-Application Service Design Pattern
-Business Object Design Pattern
-Composite Entity Design Pattern
Integration Layer:
-Data Access Object Design Pattern
-Service Activator Design Pattern
-Domain Store Design Pattern
-Web Service Broker Design Pattern
Since you are interested in design patterns related to EJB 3.0, you should focus on Business and Integration Layer.
MVC is an architectural design pattern which involves the whole architecture.
Hope this helps,
Manuel
|
 |
 |
|
|
subject: Architectural patterns with EJB 3.0
|
|
|