Keep in mind the overall architecture.  The user is actually using an
HTML page containing HTML fields.  The browser (nor the HTML) has no
actual knowledge of the DB or any binding or ORM you have on your
server.

So, on the server side, you have 2 primary components; servlets for
validating and processing the incoming page data and jsps for
dynamically generating the HTML form for the user's consumption and use.

This is a standard development pattern, and many ORMs exist (read up on
Hibernate) for helping with the data, and many frameworks exist for
helping with the control architecture (see Struts and Spring).  In the
middle of it all, you should have a nice set of POJOs for holding this
data.  The servlets can send populate these POJOs to the JSPs for
inclusion in the HTML output.

So, the question really becomes, what are you missing?

 

-----Original Message-----
From: jithu mada [mailto:jithu.m...@gmail.com] 
Sent: Sunday, January 24, 2010 6:28 PM
To: Tomcat Users List
Subject: Data Binding in JSP

Hi,

I need suggestion on how to do Data binding in JSP's?

I have a requirement, which is to display the table data and the user
can
add,update or delete the data to it. I am using and JSP's and Servlets.

I was searching online to find if there are any data binding frameworks
available which I can use, so that when the user modifies the table
data, I
can bind it directly to the java beans. But only thing I found was
displaying data, pagination and sorting. I couldn't find much info on
binding the modified data.

If you have done something similar  before of have any suggestions,
please
send it to me.

thanks,
Jithu

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org
For additional commands, e-mail: users-h...@tomcat.apache.org

Reply via email to