| Author |
Arraylist in bean cant be displayed in jsp
|
jayachandra madopothula
Greenhorn
Joined: Jan 08, 2008
Posts: 4
|
|
I have bean with an list property which will returning list of values, i want to display this list values on ep.jsp. can anybody help me. thanks in advance. Database.java faces-config.xml ep.jsp
|
 |
Dylan Honorez
Greenhorn
Joined: Oct 02, 2006
Posts: 29
|
|
I don't think you can access your exposed JSF bean with ${Database}. I think you have to dig deeper in your context if you use ${} What you CAN use is #{Database}, ofcourse that isn't compatible with the c:forEach tag, but it's what you have the h:datatable tag for.
|
SCJP - SCWCD
|
 |
jayachandra madopothula
Greenhorn
Joined: Jan 08, 2008
Posts: 4
|
|
I have used h:dataTable and also i used #{Database} but still i didnt find the display of list. please tell where do i do mistake.
|
 |
Dylan Honorez
Greenhorn
Joined: Oct 02, 2006
Posts: 29
|
|
That indeed looks better. Now, what you're facing is probably your temporaryMehod that is not being called, so your list doesn't get values. Try just giving it some values in the bean constructor to start with, so you know your jsp is allright. From then on, try building your navigation structure because yours doesn't make much sense to me... Good luck.
|
 |
 |
|
|
subject: Arraylist in bean cant be displayed in jsp
|
|
|