Java EE7教程中的简单流程示例会记住先前流程的值

时间:2015-02-12 14:50:03

标签: jsf flow-scope

我只是在玩Java EE7教程中的简单流示例,并偶然发现问题。

文档: Java EE7 tutorial - Simple Flow

示例:tut-install / examples / web / jsf / simple-flow /

我感到困惑,因为流程会在返回页面后记住FlowScope中的数据。

手册中的示例代码:

src/main/webapp
    index.xhtml
    simple-flow-return.xhtml
    WEB_INF/
        web.xml
    simple-flow
        simple-flow-flow.xml
        simple-flow.xhtml
        simple-flow-page2.xhtml

演示:

Enter flow
--> Value = test
--> Second Page - Value: test
--> Return
--> Value (should be empty): "" --> Correct!
--> Back to start
--> enter flow
--> Value: test (THIS VALUE IS REMEMBERED AND ALREADY FILLED IN!)

为什么要记住这个值?我离开了返回页面并且值为空,但现在再次记住!

这个例子有没有人有同样的问题? (在GlassFish和WildFly上测试)

1 个答案:

答案 0 :(得分:0)

我们取得了一些进展: 使用教程中的简单流示例,但使用Managed bean。