I am trying to read data from a table and display it to the user .
Can anybody tell how to do it using struts 1.3 ?
|
|
You need to study this: http://struts.apache.org/1.x/userGuide/index.html |
||||
|
|
(Edit: Just noticed this is a 2 year old question) Don't use the struts tags unless you NEED to. This can be accomplished with jstl/el. So on your Action class you would have something like this:
In your jsp:
You can also access the keys/values with:
Respectively. |
||||
|
|