Granny's Programming Pearls
"inside of every large program is a small program struggling to get out"
JavaRanch.com/granny.jsp
The moose likes Servlets and the fly likes Method 2 Architecture Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "Method 2 Architecture" Watch "Method 2 Architecture" New topic
Author

Method 2 Architecture

Frank Albright
Greenhorn

Joined: Feb 19, 2000
Posts: 23
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
Tony Alicea
Desperado
Sheriff

Joined: Jan 30, 2000
Posts: 3219
It's a very long document, but it's all here:
http://java.sun.com/j2ee/download.html


Tony Alicea
Senior Java Web Application Developer, SCPJ2, SCWCD
Tony Alicea
Desperado
Sheriff

Joined: Jan 30, 2000
Posts: 3219
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

Joined: Feb 19, 2000
Posts: 23
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.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Method 2 Architecture
 
Similar Threads
Sessions JSP,JavaBeans and Servlets,
Caching pages
Java Beans and JSP
beans & jsp
Beans in servlets and JSP