例:
<jsp:useBean id="exampleBean" scope="request" type="java.util.Date"/>
<h:outputText id="${exampleBean.day}" value="#{exampleBean.day}" /> // OK
<h:outputText id="#{exampleBean.day}" value="${exampleBean.day}" /> // エラー: `id` 属性は動的な式が、`value` は遅延式が必要です