RE: Struts and Displaying data from a database

2004-11-02 Thread dbm_mailinglist
lto:[EMAIL PROTECTED] Sent: Tuesday, November 02, 2004 2:34 PM To: Struts Users Mailing List Subject: RE: Struts and Displaying data from a database Have the business logic (where ever it may reside) return a collection of JavaBean. You can simply place the collection in some scope (request, session,

RE: Struts and Displaying data from a database

2004-11-02 Thread Robert Taylor
; From: dbm_mailinglist [mailto:[EMAIL PROTECTED] > Sent: Tuesday, November 02, 2004 2:25 PM > To: Struts Users Mailing List > Subject: RE: Struts and Displaying data from a database > > > I guess that's where I get lost. What does the bean return so that it > can display multip

RE: Struts and Displaying data from a database

2004-11-02 Thread Slattery, Tim - BLS
From: dbm_mailinglist [mailto:[EMAIL PROTECTED] Subject: RE: Struts and Displaying data from a database > I guess that's where I get lost. What does the bean return so > that it can display multiple rows in the JSTL/JSP? I guess > the type of the 'getter' would be so

RE: Struts and Displaying data from a database

2004-11-02 Thread dbm_mailinglist
27;m trying to stick to just JSP/JSTL/Servlets/Java and trying to steer away from additional tools like Hibernate. Thank you much! -Original Message- From: Slattery, Tim - BLS [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 02, 2004 2:02 PM To: 'Struts Users Mailing List' Subj

Re: Struts and Displaying data from a database

2004-11-02 Thread DGraham
1. http://www.w3.org/TR/REC-html40/struct/tables.html 2. http://www.displaytag.org/index.jsp "dbm_mailinglist" <[EMAIL PROTECTED]> 11/02/2004 01:56 PM Please respond to "Struts Users Mailing List" <[EMAIL PROTECTED]> To <[EMAIL PROTECTED]> cc Subject Struts and Displaying data

Re: Struts and Displaying data from a database

2004-11-02 Thread Kevin Bridges
I had this question the other day and was referred to Hibernate (http://www.hibernate.org) by David Friedman. The other name that cam up was ibatis. I chose hibernate and used this tutorial to help figure it out: http://homepage.mac.com/edahand/projects/java/example1.html On Tue, 2 Nov 2004 1

RE: Struts and Displaying data from a database

2004-11-02 Thread Slattery, Tim - BLS
> I'm a complete newbie to Struts. I know how to use Struts to > build forms and submit them, but how do I just display data > from a database? I want a screen that just displays data from > a sql command to a database and displays the results in a > html table. Do I use ActionForm even though