• 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

jsp / servlet / dao / javabeans

 
Ranch Hand
Posts: 264
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi

i have a little local web site with jsp /servlet, i created a bean...... and a dao... what is the best way to use the dao?
in the servet take the jsp parameter, populate the bean and send the bean to dao?

thanks
 
(instanceof Sidekick)
Posts: 8791
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I think this kind of thing is typical

The POJO (Plain Old Java Object) is there to move "business logic" out of the servlet and JSP.

Some interesting guidelines: servlet is all Java, uses request & response, no HTML. JSP is all HTML & tags, no Java. POJO is all Java, no HTML, no HTTP* imports.

Editing: I just spotted that you were talking about a bean to hold the parameters that came in on the request. That's perfectly cool, too. I made mine hold the results we got back from the database on a query so we could have several beans involved in this thing.

Does that makes sense?
[ September 05, 2006: Message edited by: Stan James ]
 
Sheriff
Posts: 11343
Mac Safari Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moving to the JDBC forum.
[ September 05, 2006: Message edited by: marc weber ]
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic