0

(問題解​​決) jsf2-spring-hibernate プロジェクトがあり、ボタンをクリックするたびに、Bean のコンストラクターとポストコンストラクターの両方が呼び出され、実行したい実際のクリック リスナーが無視されます。Bean はセッションスコープ (リクエストではない) であることに注意してください。おそらくビュースコープにする必要がありますが、これは Spring に干渉しますか? 注2:ViewScopedを試してみましたが、同じ結果でした。

私を手がかりにした問題は、clickListener(以下)が実行されていないことでした

<h:selectOneListbox id="listBox" value="#{ScheduleMB.clients}" size="5"  
    rendered="#{ScheduleMB.showClients}" >
    <f:selectItems value="#{ScheduleMB.clientList}" var="c"
    itemLabel="#{c.lastName}" itemValue="#{c.lastName}" />
    <f:ajax event="click" listener="#{ScheduleMB.clickListener}"  
    render="group" />
</h:selectOneListbox>

私がやろうとしているのは、ユーザーがボタンをクリックしたときにクライアントのリストを表示することです(ボタンは上には表示されていませんが、下の完全なjsf2ページに含まれています)。ユーザーがリストボックスをクリックすると、クリックリスナーがアクティブになり、Bean はクリックされた値を処理します。

2 番目の編集 - 私の facelet には Bean へのバインディングが含まれています。

編集 - いくつかの変更を加えました 1) Bean が拡張するクラスが抽象であることを確認しました。これにより、ajax コードが機能するようになりましたが、viewscoped の場合でもコンストラクターは数回実行されました。2) スコープをセッションに変更すると、すべてが他の変更で正常に機能します。

私の質問は、ViewScoped のときにコンストラクターが複数回起動するのはなぜですか?

元の質問:

以下は完全な jsf2 ページ (およびその下の JavaBean) です。

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:p="http://primefaces.org/ui"
xmlns:t="http://myfaces.apache.org/tomahawk">


<h:form>   

    <h3>TimeOnly</h3>

    <t:div style="position: absolute; left: 5px; top: 5px; right: 5px; width: 875px ">
        <t:schedule value="#{ScheduleMB.model}" id="schedule1"
            binding="#{ScheduleMB.schedule}"
            rendered="true" visibleEndHour="18" visibleStartHour="8"
            workingEndHour="17" workingStartHour="9" readonly="false"
            theme="default" tooltip="true"
            submitOnClick="true"
            mouseListener="#{ScheduleMB.scheduleClicked}"
            action="#{ScheduleMB.scheduleAction}" />
    </t:div>

    <t:div style="position: absolute; left: 925px; top: 5px; width: 210px; overflow: auto">
        <h:panelGrid columns="1">
            <t:inputCalendar id="scheduleNavigator"
                value="#{ScheduleMB.model.selectedDate}" />
        </h:panelGrid>
    </t:div>

    <t:div style="position: absolute; left: 890px; top: 190px; width: 325px; overflow: auto; font-size: 14px; 
        text-align: left; height: 270px" >
        <h:panelGrid columns="1" rendered="true">
            <h:outputLabel>Enter From Date:Time</h:outputLabel>

            <t:inputDate popupCalendar="true" type="both" value="#{ScheduleMB.from}"/>

            <h:outputLabel>Enter To  Date:Time</h:outputLabel>

            <t:inputDate popupCalendar="true" type="both" value="#{ScheduleMB.to}"/>
            <h:outputLabel for="TitleText" value="Title:"/>
            <h:panelGroup id="group">
                <h:inputText id="TitleText" value="#{ScheduleMB.title}"/>
                <h:commandButton value="Clients" >
                    <f:ajax event="click" listener="#{ScheduleMB.clientList}"
                    render="group"/>
                </h:commandButton>

                <h:selectOneListbox id="listBox" value="#{ScheduleMB.clients}" size="5"  
                rendered="#{ScheduleMB.showClients}" >
                    <f:selectItems value="#{ScheduleMB.clientList}" var="c"
                        itemLabel="#{c.lastName}" itemValue="#{c.lastName}" />
                    <f:ajax event="click" listener="#{ScheduleMB.clickListener}"  
                        render="group" />
                </h:selectOneListbox>
            </h:panelGroup>
            <h:outputLabel for="DescText" value="Description:"/>
            <h:inputText id="DescText" value="#{ScheduleMB.description}"/>
            <h:panelGroup>
                <h:commandButton
                actionListener="#{ScheduleMB.addNewEntry}"
                value="Add entry" rendered="#{not ScheduleMB.model.entrySelected}"/>

                <h:commandButton
                actionListener="#{ScheduleMB.deleteSelectedEntry}"
                value="Delete entry"
                rendered="#{ScheduleMB.model.entrySelected}"/>
            </h:panelGroup>
        </h:panelGrid>
    </t:div>

 </h:form>
</html>

そして、これが Sessionscoped Bean です (無関係な部分の多くを削除しました)。

@ManagedBean(name="ScheduleMB")
@SessionScoped
public class ScheduleMB extends ScheduleBase
                                     implements Serializable
{
 Map<String,Object> clientValues = new HashMap<String,Object>();
 List<Client> clientValues2 = new ArrayList<Client>();

@ManagedProperty(value="#{UserService}")
IUserService userService;   

public ScheduleMB() {
    clients="hello";   //I put a breakpoint here just to be sure it was called

    }
@PostConstruct
public void init() {
    createClientValues();

}



//This part is not executing.
  public void clickListener(AjaxBehaviorEvent event){
    this.title = clients;
    showClients = false;
    renderClientList=false;

}



public List<Client> getClientList() {
    return clientValues2;
}

private void createClientValues() {

    clientValues2 = userService.findAllClients();

}

public void clientList() {
    showClients=true;
}


public String getDescription() {
    return description;
}

public void setDescription(String description) {
    this.description = description;
}

public String getTitle() {
    return title;
}

public void setTitle(String title) {
    this.title = title;
}

public String getClients() {
    return clients;
}

public void setClients(String clients) {
    this.clients = clients;
}

    public boolean isRenderClientList() {
    return renderClientList;
}

public void setRenderClientList(boolean renderClientList) {
    this.renderClientList = renderClientList;
}

public boolean isShowClients() {
    return showClients;
}

public void setShowClients(boolean showClients) {
    this.showClients = showClients;
}

public IUserService getUserService() {
    return userService;
}

public void setUserService(IUserService userService) {
    this.userService = userService;
}
 }
4

1 に答える 1

0

何が問題で、どのように修正するかを理解しました。元の症状は、f:ajax クリック イベントが関連付けられた Bean メソッドを起動せず、ビュースコープであるにもかかわらず、各対話で Bean が構築されていたことでした。Bean を再確認したところ、その親クラスが抽象クラスではなく、スコープが矛盾していることに気付きました。スコープをなくして抽象化しました。また、メイン Bean のスコープをセッションに変更しました。これは、Facelet が Bean にバインドされ、ビュースコープの下での各対話でコンストラクターが呼び出される原因にもなるためです。問題は解決しました。

于 2012-09-07T14:47:08.370 に答える