我有一个 JSF 2.0 应用程序,它有一个包含字符串列表的 bean。
我想将字符串从 an 添加<h:inputText>/>
到我的列表并显示我的列表。
以下代码只是将引用放在我的列表中。所以我列表中的每个元素都设置为最后一个输入。
@ManagedBean
@ApplicationScoped
public class Bean {
private String name;
private ArrayList<String> test = new ArrayList<String>();
public Bean() {
}
public Bean(String name) {
this.name = name;
}
public String addtoList(String _name){
test.add(_name);
return "./index.xhtml";
}
/***************GETTER/SETTER/HASHCODE/EQUALS**************************/
...
}
这是我的 index.xhtml 的一部分:
<h:inputText id="name"
value="#{bean.name}"
required="true">
</h:inputText>
<h:commandButton value="Post"
action="#{bean.addtoList(name)}"/>
<br/>
<h:dataTable var="bean"
value="#{bean.test}">
<h:column>
<h:outputText value="#{bean.name}"/>
</h:column>
</h:dataTable>