1

テーブルからオブジェクトを削除しようとしていますが、「削除」ボタンをクリックしても何も起こらず、この特定のオブジェクトを削除するメソッドを呼び出す必要があります。MethodNotFoundException が表示されますが、その理由がわかりません。コードは次のとおりです。

.xhtml:

                <p:column headerText="Imię">
                    <h:outputText value="#{client.firstName}" />
                </p:column>
                <p:column headerText="Nazwisko">
                    <h:outputText value="#{client.lastName}" />
                </p:column>

                <p:column>                  
                    <p:commandLink type="submit" value="Usuń"
                    style="font-size: 11px"
                        update="searcher:table:clientsTable" 
                        ajax="true"
                        actionListener="#{clientBean.deleteClient(client)}"
                        styleClass="btn btn-danger resized-font delete-btn"
                        icon="glyphicon glyphicon-trash">
                        <span class="glyphicon glyphicon-trash"></span>                                     
                    </p:commandLink>


                    <a href="klienci/#{client.ID}"
                    style="font-size: 11px"
                        class="btn btn-primary resized-font"><span
                        class="glyphicon glyphicon-book"></span> Informacje</a>

                </p:column>
            </p:dataTable>
        </h:form>

ClientBean からのメソッド:

public void deleteClient(Client client){
    clientDao.delete(client);
}

例外:

SEVERE: javax.el.MethodNotFoundException: Method not found: com.firanycrm.controller.ClientBean@14b77a2a.deleteClient(com.firanycrm.model.Client)
4

1 に答える 1