• 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

Method 2 Architecture

 
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Can anyone tell me where to find information on the method 2 architecture? i.e. using jsp's to display info in beans. Using beans as the transfer mechanism between servlets and jsps. And using servlets for the actual logic, db access, etc. Thanks.
Frank
 
Desperado
Posts: 3226
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It's a very long document, but it's all here:
http://java.sun.com/j2ee/download.html
 
Tony Alicea
Desperado
Posts: 3226
5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
That is what I'm doing now at work:
I have Java Beans (i.e., classes that conform to specific characteristics) that do the computational work including connecting to other hosts over the Internet and getting the required info, and then JSPs to extract that info via either the <jsp: getProperty> tag or the plain <%= ... tags.
Today my supervisor said that it was "Method Two" that I was using... so I was surprised when you mentioned it here... And I better continue to read the long Sun doc!
 
Frank Albright
Greenhorn
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks Tony. I quit my job as a sales engineer and have taken a contract position with a consulting firm and this is basically what we are doing. Meantime, still looking for a permanent job in Memphis.
 
reply
    Bookmark Topic Watch Topic
  • New Topic