Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The documentation for the ui:repeat tag in JSF 2.0 says you can iterate over a ResultSet but my code:

<ui:repeat value="#{bean.resultSet}" var="row" varStatus="status">
   #{row.string("mySQLColumn")}
</ui:repeat>

produces this error:

javax.faces.FacesException: Iteration start index is greater than the number of available rows.
    at com.sun.faces.facelets.component.UIRepeat.validateIterationControlValues(UIRepeat.java:682)
    at com.sun.faces.facelets.component.UIRepeat.process(UIRepeat.java:505)
    at com.sun.faces.facelets.component.UIRepeat.encodeChildren(UIRepeat.java:974)
    at javax.faces.component.UIComponent.encodeAll(UIComponent.java:1756)
    at javax.faces.render.Renderer.encodeChildren(Renderer.java:168)
share|improve this question

1 Answer

up vote 1 down vote accepted

Even though it seems to be supported as argument for iteration, it would be best to first transform it to a List and then iterate.

That way you won't be propagating the database-access technology to the view layer.

share|improve this answer
Why does the documentation say the value attribute can contain a ResultSet? download.oracle.com/javaee/6/javaserverfaces/2.1/docs/vdldocs/… – Adam Fisher Oct 22 '11 at 20:19
hm, interesting. It seems it can, but it would be best not to propagate that to the view layer. – Bozho Oct 22 '11 at 20:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.