I need to display the data requested by the user from the database on my jsp page.How can I do it using java beans?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Now we can design a bean that corresponds to a database table. We just use the columnnames as fieldnames and have a java object that represents a table entry. Have a look at DAO/DTO patterns and ORM (like JPA or hibernate). Those 'implement' this kind of technique and I'm pretty sure, one of those will help. |
|||||
|