Hello,
I have a simple
in my Spring 3 MVC controller. I have put an Iterator there to make sure that the userService.loadUsers() is actually populated.
(The loadUsers() method returns a Set.)
----
Now, in my listUsers.jsp page, I have JSTL like this (to try to set up a combo with a list of user names):
----
The problem is that the combo is empty -- it never gets populated.
In the debugger, it steps right over the code and doesn't loop as it should.
Therefore, I think I'm missing something basic here.
Isn't the object automatically in the
JSP's "session". Do I need to do something special to access it?
Look forward to any suggestions.
Thanks,
mike