我使用的是Spring Web Flow和JSF-2。
这个事实对我来说很奇怪而且难以理解。
我有一个主页,一个典型的索引。
我有和 actionView 一些过滤器(过滤将使用 ajax 调用)和一个表格,用于根据过滤器信息显示结果。
此操作的后端bean被定义为@ViewScoped。 如果,首先,我在过滤一些数据后导航到索引,然后,我回到动作视图我不希望找到最后一个搜索显示,我期望一个空视图,但过滤器不是空的并过滤数据结果。
为什么呢?如果我定义一个@ViewScope是因为我希望在我更改视图时删除后面的bean信息(索引是我的另一个视图),但我一定是犯了一些错误。
这是我的代码:
我的 父流 (简化):
<view-state id="index" view="../index.xhtml" redirect="true" popup="true"/>
<view-state id="action1Flow" view="flowRedirect:action1-flow" />
<global-transitions>
<transition on="home" to="index" />
<transition on="action1" to="action1Flow" />
</global-transitions>
action1-flow: (start-state =&#34; action1View&#34;)
<view-state id="action1View" view="../views/action1View.xhtml" redirect="true" popup="true"/>
action1View.xhtml :(简化,一个过滤器 - &gt;表格结果)
...
<p:panel id="filter" header="Filter example">
<h:panelGrid columns="2">
<h:outputLabel for="dataFilter" value="Filter"/>
<p:inputText id="dataFilter" value="#{action1View.dataValue}"/>
<p:ajax event="keyup" listener="#{action1View.filterData()}" update="table"/>
</p:inputText>
</h:panelGrid>
</p:panel>
<p:panel id="display" header="Data filtered">
<p:dataTable id="table" var="data" value="#{action1View.resultData"
selection="#{action1View.selectedData}" rowKey="#{data.dataValue}">
<p:column headerText="#{msg.id}" sortBy="#{data.dataValue}">
<h:outputText value="#{data.dataValue}" />
</p:column>
</p:dataTable>
</p:panel>
...
<p:commandButton value="Go to index" action="home"/>
...
和 action1View.java ,后面的bean:
@ManagedBean
@ViewScoped
@Component("action1View")
public class Action1View implements Serializable {
static final long serialVersionUID = 42L;
List<ExampleBean> resultData = null;
ExampleBean selectedData = null;
Integer dataValue;
public ExampleBean getSelectedData() {
return selectedData;
}
public void setSelectedData(ExampleBean selectedData) {
this.selectedData = selectedData;
}
public Integer getDataValue() {
return dataValue;
}
public void setDataValue(Integer dataValue) {
this.dataValue = dataValue;
}
public void filterData() {
// Some logic
resultData = xxxxx;
}
}
的index.xhtml :
...
<p:commandButton value="Go to index" action="action1"/>
...
对不起我的英语和......
问候!
答案 0 :(得分:0)
我找到了GAP!
除了@ViewScoped注释之外,我的bean也使用这个注释定义(正如你在代码中看到的那样):@Component(“action1View”)没有明显的原因。
事实是通过删除这个注释,我得到了一切正常工作。
我认为这是因为组件行为覆盖了ViewScoped,因此可以创建每个定义的类只有一个bean,因此,信息保持及时(直到会话结束或应用程序关闭)。
但如果有人提供更多更丰富的信息,那将会很棒。