Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在不输入 JSF 页面的情况下设置属性值,如下所示:
<ui:repeat var="i" value="#{elBean.list}" iterationStatus="loop" > #{i} // I need to assign this value to a bean property </ui:repeat>
你可以加c:set
c:set
<c:set property="i" value="SOME_VALUE"/>
另见