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

I have this simple code in facelets "numbers.xhtml":

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:h="http://java.sun.com/jsf/html"
  xmlns:f="http://java.sun.com/jsf/core"
  xmlns:ui="http://java.sun.com/jsf/facelets"
  xmlns:c="http://java.sun.com/jsp/jstl/core">
  <body>
    <h1>Numbers page</h1>
  <table>
    <c:forEach var="number" items="#{numbers}">
    <tr>
        <td>
          <h:form>
          <h:commandLink action="#{numbers.showNumber}" value="#{number.number}" />
          </h:form>
        </td>
    </tr>
    </c:forEach>
  </table>
</body>
</html>

In "showNumber" method I just return string "number" which is mapped in faces-config.xml to "number.xhtml" but it always opens "numbers.xhtml" page.

I even tried with "ui:repeat" tag but same results. If I put "h:commandLink" outside loop it works.

You have simple test case here. It is maven project and you need just to execute "./run_jetty.sh" to run simple jetty server.

share|improve this question
I'm confused here, what is the type of numbers? forEach usually takes a Collection so does this type you are passing in actually have a getShowNumber() method? – Abdullah Jibaly Jul 18 '11 at 19:46

1 Answer

up vote 1 down vote accepted

Just saw the src you attached, I think you need a getter method: getShowNumber() in your Numbers class. You might want to rename public static String showNumber to public static String getShowNumber.

share|improve this answer
Action methods don't need get/set, because that are not fields... – XoR Jul 19 '11 at 5:54
Yes, but as the Java bean spec says (and as mentioned in your comment), to call x.showNumber you need to have getShowNumber() in your class. – Abdullah Jibaly Jul 19 '11 at 6:15
Anyways glad you got it to work. – Abdullah Jibaly Jul 19 '11 at 6:16

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.