• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Design Patterns for DAO & VO

 
Greenhorn
Posts: 15
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What GoF design pattern(s) does Data Access Object exhibit?
Proxy?
What GoF design pattern(s) does Value Object exhibit?
Memento?
Any idea?
 
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Daniel CarMichael:
What GoF design pattern(s) does Data Access Object exhibit?
Proxy?
What GoF design pattern(s) does Value Object exhibit?
Memento?
Any idea?


I think DAO is closer to Adapter (anyway, it's more strutural than creational). Value Object is also structural in nature, so in some cases it could be Composite, in most cases it's just a bean, nothing else. I do not think that Memento's usage strategy will work for VOs.
 
Ranch Hand
Posts: 1309
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Could DAO be the Bridge Pattern? :roll:
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
DAO = Bridge + Adapter
The Adapter part is in the implementator of the Bridge.
Often created by Abstract Factory or Factory Method.

more detail, see the sun web site plz.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic