Page Bean не сохраняется в FlowScope Jsf 2.2

Пока я создаю приложение, мой боб страницы не сохраняется в @FlowScoped . по умолчанию хранится в области запроса здесь мой код:

enter code here 
package com.webage.beans;

import java.io.Serializable;

import javax.faces.bean.ManagedBean;
import javax.faces.flow.FlowScoped;

@ManagedBean(name="flow1")
@FlowScoped(value = "flow1")
public class Flow1Bean implements Serializable {

    public String cusName;
    public String city;
    public String getName() {
        return this.getClass().getSimpleName();

    }

    public String doReturnValue() {

        return "return1";
    }

    /**
     * @return the cusName
     */
    public String getCusName() {
        return cusName;
    }

    /**
     * @param cusName the cusName to set
     */
    public void setCusName(String cusName) {
        this.cusName = cusName;
    }

    /**
     * @return the city
     */
    public String getCity() {
        return city;
    }

    /**
     * @param city the city to set
     */
    public void setCity(String city) {
        this.city = city;
    }
}

Мой XHTML-файл здесь, я получаю информацию со страницы и сохраняю ее в бобе страницы:

<p>
            <span id="param1FromFlow1">Flow bean
                param1Value:<h:inputText id="input"
                    value="#{flow1.cusName}" /> </span>
        </p>

        <h:outputText value="#{null != facesContext.application.flowHandler.currentFlow}" >
        </h:outputText>

        <p></p>
        <h:commandButton type="submit" value="Next" styleClass="commandButton"
            id="button1" action="flow1a"></h:commandButton>
        <p></p>

Приведенный ниже код возвращает "false" в файле flow/flow1.xhtml

<h:outputText value="#{null != facesContext.application.flowHandler.currentFlow}" >
        </h:outputText>

1 ответ

Flowscope является областью применения CDI. использование @Named вместо @ManagedBean,

Другие вопросы по тегам