メソッド呼び出しを介してPrimafaces出力ラベルに入力することについて質問があります。このメソッドにはパラメーターも必要でした。
ラベルは次のようになります。
<p:dataTable id="answerToQuestionDialogTable" var="answer" value="#{allQuestionBean.answers}">
<p:column headerText="Counts For this Answer">
<p:outputLabel value="#{allQuestionBean.votingCounter}">
<f:param name="id" value="#{answer.answerId}"/>
</p:outputLabel>
</p:column>
</p:dataTable>
私のバッキングBeanには、「votingCounter」という名前の整数フィールドがあり、その後にゲッターが続きます。
public int getVotingCounter() {
Map<String, String> params = FacesContext.getCurrentInstance().getExternalContext().getRequestParameterMap();
int answerID = Integer.parseInt(params.get("id"));
return answeredDAO.getCountForAnswer(answerID);
}
サイトを読み込もうとすると、AppServer(Tomcat 6)から次のLogOutputが表示されます。
04.09.2012 04:30:47 com.sun.faces.context.PartialViewContextImpl$PhaseAwareVisitCallback visit
SCHWERWIEGEND: javax.el.ELException: /pages/allQuestion.xhtml @69,81 value="#{allQuestionBean.votingCounter}": Error reading 'votingCounter' on type bean.view.AllQuestionBean
なぜこれが機能しないのかを誰かに説明してもらえますか?また、メソッドを呼び出してラベルをテキストで埋める方法を教えてもらえますか?