我有一个List<String>
,我成功地将其表示在一个数据表中;现在我正在尝试用它创建一个复合组件,但似乎我一直无法理解StateHelper
的工作原理。
我想要做的是,如果xhtml传递的value
属性评估为null
,则自动创建新的List<String>
。现在,唯一可能的操作是单击一个按钮,将新项目添加到列表中。
我的组件
<cc:interface componentType="testComponent">
<cc:attribute name="value" required="true" type="java.util.List"/>
</cc:interface>
<cc:implementation>
<f:event type="postAddToView" listener="#{cc.init}" />
<p:dataTable id="data" value="#{cc.data}" var="_data">
<p:column headerText="Nombre / Relación">
<h:outputText value="#{_data}" />
</p:column>
</p:dataTable>
<p:commandButton value="Añadir" process="@this" update="data"
actionListener="#{cc.addData}" ajax="true"/>
</cc:implementation>
组件bean是
@FacesComponent("testComponent")
public class TestComponent extends UIOutput implements NamingContainer {
private static final String LISTA_DATOS = "LST_DATOS";
private static final Logger log = Logger.getLogger(TestComponent.class.getName());
@Override
public String getFamily() {
return UINamingContainer.COMPONENT_FAMILY;
}
public List<String> getData() {
@SuppressWarnings("unchecked")
List<String> data = (List<String>) this.getStateHelper().get(LISTA_DATOS);
return data;
}
public void setData(List<String> data) {
this.getStateHelper().put(LISTA_DATOS, data);
}
public void addData() {
List<String> data = (List<String>)this.getData();
data.add("HOLA");
this.setData(data);
}
public void init() {
log.info("En init()");
if (this.getStateHelper().get(LISTA_DATOS) == null) {
if (this.getValue() == null) {
this.getStateHelper().put(LISTA_DATOS, new ArrayList<String>());
} else {
this.getStateHelper().put(LISTA_DATOS, this.getValue());
}
}
}
该组件被称为
<h:form>
<imas:editorTest value="#{testBean.data1}"/>
</h:form>
<h:form>
<imas:editorTest value="#{testBean.data2}"/>
</h:form>
testBean
:
private List<String> data1 = new ArrayList<>(Arrays.asList("ONE", "TWO", "SIXTYNINE"));
private List<String> data2 = null;
public List<String> getData1() {
return this.data1;
}
public void setData1(List<String> data1) {
this.data1 = data1;
}
public List<String> getData2() {
return this.data2;
}
public void setData2(List<String> data2) {
this.data2 = data2;
}
我发现的问题是,在传递data2
(null
列表)时,点击该按钮会添加一个新项目,但只会增加前两次;之后,无论我单击按钮多少次,都不会向列表中添加新项目(日志中不会显示任何异常)。相反,使用data1
初始化的组件添加尽可能多的项目是没有问题的。
我观察到的一件事让我觉得我误用了getStateHelper
,当我点击按钮时,init()
方法执行两次,那时{ {1}}是this.getStateHelper().get(LISTA_DATOS)
,而我预计它会因为在首次呈现组件时初始化它而不为null。我希望null
在调用之间传递这种状态,我错了吗?
哦!我正在使用带有JDK 7的Wildfly 8.1(无升级)。