I have a vector of beans that holds information I want to display in my jsp page. I'm currently just using standard java expressions to display this, I want to look into using jstl to separate concerns. Is this possible, and how? I've been googling but I can't seem to find anything.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I think that what you are looking for is the < c:foreach > tag. for example, printing the value myInt property on instances of MyClass (defined below):
where vector name is the name of the vector ,for example, after doing a Suppose you have a class myClass.
|
|||||
|
|
To expend on Tom's example, here's something more concrete:
Where "myList" is a request attribute which contains your vector. A common error is to forget the ${} around ${myList} - if you do this, JSTL won't throw an error, it'll just generate a list for you with a single item, the string "myList". |
|||
|
|