Design Pattern Question
Lets say in an application there are the following components
Database
|
|
V
DAOLayer
|
|
V
BO LAYER
|
|
V
Servlets
|
|
V
JSPs
What design patterns does the above incorporate?
My guess - DAO pattern.
Is this a good enough design for a SAAS(Software as a service) application?
What would be the drawbacks of this design?
How could this design be made better?
[501 byte] By [
ssv45324a] at [2007-10-2 20:22:49]

> my guess - DAO pattern.
Model 2, perhaps, among other patterns within the layers themselves (e.g., factory, builder, strategy, etc.).
[url=http://www.patterndepot.com/put/8/JavaPatterns.htm]The Design Patterns Java Companion[/url]
[url=http://www.wickedlysmart.com/HeadFirst/HeadFirstDesignPatterns/HeadFirstPatternsIndex.html]Head First Design Patterns[/url]
[url=http://home.earthlink.net/~huston2/dp/patterns.html]Huston Design Patterns[/url]
[url=http://www.mindspring.com/~mgrand/pattern_synopses.htm]Overview of Design Patterns[/url]
~