0

電話をユーザーに追加するためのページを作成しています。

xhtml ページ:

<h:form id="form1">
        <p:growl id="messages" showDetail="true"/>
        <p:panel header="Phone" style="width: 400px;"> 
            <p:panelGrid columns="2">
                <h:outputLabel for="number" value="Number: " />
                <p:inputText id="number"  value="#{addUserBean.phone.number}"/>
                <h:outputLabel for="name" value="Country: " />
                <p:inputText id="name" value="#{addUserBean.phone.country.name}"/>
                <f:facet name="footer">
                    <h:commandButton value="Add Phone" action="#{addUserBean.Add}"/>
                </f:facet>
            </p:panelGrid>
            <p:spacer height="30px;"/>
            <p:dataTable value="#{AddUserBean.user.phones}" var="phonex"  editable="true">
                <f:facet name="header">  
                    Phone List  
                </f:facet>
                <p:ajax event="rowEdit" listener="#{AddUserBean.onEdit}" update=":form1:messages" />  
                <p:ajax event="rowEditCancel" listener="#{AddUserBean.onCancel}" update=":form1:messages" /> 
                <p:column>
                    <f:facet name="header">  
                        <h:outputText value="Number" />  
                    </f:facet>
                    <p:cellEditor>  
                        <f:facet name="output">  
                            <h:outputText value="#{phonex.number}" />  
                        </f:facet>  
                        <f:facet name="input">  
                            <p:inputText value="#{phonex.number}" style="width:100%"/>  
                        </f:facet>  
                    </p:cellEditor> 
                </p:column>

                <p:column>
                    <f:facet name="header">  
                        <h:outputText value="Country:" />  
                    </f:facet>
                    <p:cellEditor>  
                        <f:facet name="output">  
                            <h:outputText value="#{phonex.country.name}" />  
                        </f:facet>  
                        <f:facet name="input">  
                            <p:inputText value="#{phonex.country.name}" style="width:100%"/>  
                        </f:facet>  
                    </p:cellEditor>
                </p:column>

                <p:column headerText="Options" style="width:50px">  
                    <p:rowEditor />  
                </p:column> 
            </p:dataTable>
        </p:panel>
    </h:form>

バッキング Bean :

@Named
@RequestScoped
public class AddUserBean {

    private Phone phone;

    private Country country;

    private User user;

    @Inject
    UserBeanLocal userBean;

    public AddUserBean(){

        phone= new Phone();
        phone.setCountry(new Country());
        user= new User();
        user.setPhones(new ArrayList<Phone>());
        country= new Country();

    }

    public Phone getPhone() {

        return phone;
    }

    public void setPhone(Phone phone) {
        this.phone = phone;
    }


    public Country getCountry() {
        return country;
    }

    public void setCountry(Country country) {
        this.country = country;
    }

    public void Add(){
        phone.getCountry().setName(country.getName());
        user.getPhones().add(phone);
    }

    public User getUser() {
        return user;
    }

    public void setUser(User user) {
        this.user = user;
    }

}

送信ボタンをクリックすると、ユーザーの新しい電話がリストに追加され、データテーブルが更新されます。私の問題は、送信時にユーザー変数が更新されていないことです(更新されますが、更新時に変数がクリアされます)、これはコンストラクターが原因である可能性がありますが、初期化を削除すると Null ポインター例外が発生します。

役職

この投稿を見ましたが、うまくいきませんでした。Bean プロパティを に変更しようとしましたSessionScoped(javax.enterprise.context.SessionScoped)が、この例外が発生しますorg.jboss.weld.exceptions.DeploymentException: WELD-000072: Bean declaring a passivating scope must be passivation capable. Bean: Managed Bean [class com.totempool.admin.beans.AddUserBean] with qualifiers [@Default @Any @Named]

4

1 に答える 1

1

inputText を更新する必要がある場合は、コンポーネントで使用する必要があります

<p:inputText .. widgetVar="myInput" />

その後、コマンドボタンに書き込み、

<p:commandButton ... process="@widgetVar(myInput)" />

パネル内のすべてのコンポーネントに更新を適用する場合は、パネルに「widgetVar」属性を使用します。

幸運を

于 2015-02-25T15:12:13.340 に答える