• 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 used in tomcat design

 
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
to the author / to those who have already finished reading the book,
What design patterns have been used extensively in the tomcat code base?
Are there some nice stuff that has been used. Would be great if somebody could share their learnings and also the tomcat module that has been implemented using the dp.
 
Ranch Hand
Posts: 1312
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Pattern of Tomcat 3.X
http://jakarta.apache.org/tomcat/tomcat-3.3-doc/internal.html
 
Ranch Hand
Posts: 834
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thank you , Somkiat Puisungnoen , it is good link
 
Ranch Hand
Posts: 124
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Does the book talk about these design patterns while describing Tomcat 4.x/5.x architecture?
 
gayathri sridhar
Greenhorn
Posts: 13
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Prashanth Joisha:
Does the book talk about these design patterns while describing Tomcat 4.x/5.x architecture?



I think yes. I was reading through the chapters and there was one place were the facade pattern was nicely described. How HttpRequest object is wrapped using facade when passing it on to other modules so that the other modules cannot invoke the private methods of the actual HttpRequest implementation.
 
reply
    Bookmark Topic Watch Topic
  • New Topic