jQuery in Action, 2nd edition
The moose likes Architect Certification (SCEA/OCMJEA) and the fly likes JSF EJB3 JPA , what are the design patterns.  Most of design patterns of J2EE doesnt make sense.. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Certification » Architect Certification (SCEA/OCMJEA)
Reply Bookmark "JSF EJB3 JPA , what are the design patterns.  Most of design patterns of J2EE doesnt make sense.. " Watch "JSF EJB3 JPA , what are the design patterns.  Most of design patterns of J2EE doesnt make sense.. " New topic
Author

JSF EJB3 JPA , what are the design patterns. Most of design patterns of J2EE doesnt make sense..

brijesh chavda
Greenhorn

Joined: Jan 01, 2011
Posts: 18
Hi,

This is a general design level question.

1.) I am using EJB3+JPA and JSF for presentation. What is the best pattern to use backend objects in presentation layer.
I am planning to use Stateless session bean as a facade to entities and use detached entities from managed bean. Is this acceptable approach? . Is there any value addition for using DAO or DTO pattern here.

2.) Should i put detached entities in HttpSession or i should create statefull session bean and put its handle to http session?

3.) Does it make sense to maintain cache of entities at presentation layer for performance for e.g Product catalogue.

4.) What is the naming convention for the managed bean , should it be called Controller? For e.g UserController or Managed Bean, like UserManagedBean.

Thanks for helping me out.

Brijesh
Jeanne Boyarsky
internet detective
Marshal

Joined: May 26, 2003
Posts: 26192
    
  66

1) Yes, that makes sense. YOu are correct that most of the old design patterns aren't needed.
2) Depends on your requirements. You'll need to decide this as architect
3) Depends on your requirements. You'll need to decide this as architect
4) see here

I'm deliberately not answering these questions because part 2 is an individual assignment.


[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: JSF EJB3 JPA , what are the design patterns. Most of design patterns of J2EE doesnt make sense..
 
Similar Threads
JSF and session beans
Performance - How to justify
Data Transfer Object (DTO) using Domain layer?
opinion: Data Transfer Objects: pattern or anti-pattern (EJB3)
jsf_book_recomendation