How to return a values list from a Bean to a JSP page

Hi!I got a Bean. It does a Data Base. I need to return a list of values in orden to show them in a JSP page. How can I do it?, I can't return an ArrayList like:<jsp:getProperty name="valuesList"....>but only simple values.Thanks!
[271 byte] By [jperojoa] at [2007-11-26 17:30:29]
# 1
Try the following forum (about JSP technology) http://forum.java.sun.com/forum.jspa?forumID=45
UncleSAMa at 2007-7-8 23:58:25 > top of Java-index,Desktop,Developing for the Desktop...
# 2
This is just a suggestion.You can send the values as single string by appending them together with a separator such as '#' between individual values. You can split them again in the jsp page for displaying. You can use the StringTokenizer option for this.
sathishkba at 2007-7-8 23:58:25 > top of Java-index,Desktop,Developing for the Desktop...