From: "Valter G. Nogueira Jr." <[EMAIL PROTECTED]> > I am looking for good ways to implements CRUD ops using Tomcat > Having handcrafted jsp/servlets almost identicals seems to be not only > boring, but an error prone aproach.
How are you doing it now? Do you have JDBC code inside your Servlets? I use Struts, and on that users list we often get the same sort of question, "How do I read and write records using Struts?" The answer is the same-- you don't. You do your data access in a separate layer of code so that nothing in the Action [or Servlet] even knows that a database exists. There are several options available if you're using JDBC-- I think Hibernate is one? I wrote my own and followed the J2EE Data Access Objects pattern. So in my Actions I have code along the lines of: Person person = personDAO.read( "12345" ); HTH, -- Wendy Smoak --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
