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

Simple-flow example from the Java EE7 tutorial remembers values of previous flow

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

文档: Java EE7 tutorial - Simple Flow

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

我百思不得其解,因为flow记住了return页面后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!)

为什么要记住这个值?我离开到return页面,值是空的,但现在又记起来了!

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

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