• 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

Java Patterns

 
Ranch Hand
Posts: 90
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Can any body tell me what Java Patterns are? Where can I find more details about that.
Thanks
Arathi
 
Sheriff
Posts: 4313
Android IntelliJ IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Design patterns are kinds of "recipes" an abstract description of a best practice to overcome a particular problem. Access a DataBase? check out DataAcessObject. Does your user interface change a lot? check out MVC.
If you want to get in depth into the world of design patterns (an excellent thing to do) check out these two books:
Core J2EE Patterns: Best Practices and Design Strategies, Second Edition
Design Patterns (also known as the Gang of Four book)
These are the two objectives for the test regarding design patterns:


13.1 Given a scenario description with a list of issues, select the design pattern (Value Objects, MVC, Data Access Object, or Business Delegate) that would best solve those issues.
13.2 Match design patterns with statements describing potential benefits that accrue from the use of the pattern, for any of the following patterns:
* Value Objects
* MVC
* Data Access Object
* Business Delegate


[ July 31, 2003: Message edited by: Jessica Sant ]
 
Ranch Hand
Posts: 70
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
also you can find Sun free information of the 4/5 patterns that you should know for the exam at:
http://java.sun.com/blueprints/patterns/catalog.html
Dani
 
reply
    Bookmark Topic Watch Topic
  • New Topic