JSF动作方法不会被调用(JSF Action Method not being called)

2019-07-29 09:35发布

我有一个Primefaces数据表和INSITE它的命令按钮JSF视图,如休耕:

<p:messages id="statusMessages" showDetail="true" />
    <h:form id="listForm">
        <p:panel header="Wellsite List">
            <br />
            <h:outputLabel value="Welcome, #{wellsiteController.loggedUser.login}" />
            <br />
            <br />

            <p:dataTable id="dataTable" var="wellsite" value="#{wellsiteController.wellsiteDataTableModel}"
                         paginator="true" rows="10" selection="#{wellsiteController.wellsite}">

                <p:column selectionMode="single" style="width:18px" id="radioSelect" />

                <p:column sortBy="#{wellsite.reference}" headerText="Wellsite ID">
                    <h:outputText value="#{wellsite.reference}" />
                </p:column>

                <p:column headerText="Allowed Groups">
                    <h:outputText value="#{wellsite.allowedGroups.toString()}" />
                </p:column>

                <f:facet name="footer">
                    <h:panelGrid columns="3">
                        <p:commandButton id="addWellsite" value="Add New Wellsite" icon="ui-icon-flag" ajax="false" action="#{wellsiteController.showAddWellsite}"/>
                        <p:commandButton id="editWellsite" value="Edit Selected Wellsite" icon="ui-icon-wrench" ajax="false" action="#{wellsiteController.showEditWellsite}"/>

                        <p:commandButton id="deleteWellsiteButton" value="Remove Selected Wellsite" icon="ui-icon-trash" onclick="confirmation.show()" type="button"/>

                    </h:panelGrid>
                </f:facet>
            </p:dataTable>
            <p:spacer height="20" />
        </p:panel>
        <p:confirmDialog id="confirmDialog" message="Are you sure you want to remove the selected Wellsite along with all it's data?" header="Confirmation" severity="alert" widgetVar="confirmation">  
            <p:commandButton id="confirm" value="Yes" ajax="false" oncomplete="confirmation.hide()" action="#{wellsiteController.deleteWellsite}" />
            <p:commandButton id="decline" value="Cancel" onclick="confirmation.hide()" type="button" />   

        </p:confirmDialog>
    </h:form>

而这里的控制器:

@ManagedBean(name = "wellsiteController")
@RequestScoped
public class WellsiteController implements Serializable {
private static final long serialVersionUID = 1L;

@ManagedProperty("#{wellsiteDao}")
private WellsiteDao wellsiteDao;

@ManagedProperty("#{userDao}")
private UserDao userDao;

@ManagedProperty("#{groupDao}")
private GroupDao groupDao;

@ManagedProperty("#{userController.loggedUser}")
private UserEnt loggedUser;

private WellsiteEnt wellsite;
private List<WellsiteEnt> wellsiteList;
DualListModel<GroupEnt> pickGroupsModel;

public WellsiteController(){
}

@PostConstruct
public void build(){
    wellsite = new WellsiteEnt();
    wellsite.setAllowedGroups(new ArrayList<GroupEnt>());
}

/*some getters & setters*/

public WellsiteDataTableModel getWellsiteDataTableModel(){
    return new WellsiteDataTableModel(getWellsiteList());
}

public void setPickGroupsModel(DualListModel<GroupEnt> model){
    pickGroupsModel = model;
}

public DualListModel<GroupEnt> getPickGroupsModel() {
    if(pickGroupsModel == null){
        List<GroupEnt> allGroups = groupDao.getAll();
        List<GroupEnt> currentGroups = wellsite.getAllowedGroups();
        for(GroupEnt g : currentGroups){
            allGroups.remove(g);
        }
        pickGroupsModel = new DualListModel<GroupEnt>(allGroups, currentGroups);
    }
    return pickGroupsModel;
}

public String listWellsites(){
    getWellsiteList();
    return "listWellsites";
}

public String showAddWellsite(){
    FacesContext context = FacesContext.getCurrentInstance();
    setWellsite(new WellsiteEnt());
    wellsite.setAllowedGroups(new ArrayList<GroupEnt>());
    pickGroupsModel = null;
    context.addMessage(null, new FacesMessage(FacesMessage.SEVERITY_INFO,
                                            "Fields annotated with a ' * ' are mandatory",""));
    return "addWellsite";
}

public String addWellsite(){
    FacesContext context = FacesContext.getCurrentInstance();

    wellsite.setDate(new Date());
    wellsite.setLastUpdate(wellsite.getDate());
    try {
        wellsiteDao.addWell(wellsite);

        for(GroupEnt g : pickGroupsModel.getTarget()){
            GroupEnt group = groupDao.getOne(g.getGroupId());
            group.getGroupWellsites().add(wellsite);
            groupDao.update(group);
        }
        return listWellsites();

    } catch (Exception ex) {
        Logger.getLogger(WellsiteController.class.getName()).log(Level.SEVERE, null, ex);
        context.addMessage(null, new FacesMessage(FacesMessage.SEVERITY_ERROR,
                                            ex.getMessage(),""));
        return null;
    }
}
}

这一观点得到正确呈现。 数据表和按钮看起来很好。 问题是,当我第一次点击“addWellsite”的commandButton,没有任何反应。 该网页似乎只是刷新。 如果我再次点击它,如发生异常:

java.lang.NumberFormatException: For input string: "null"

使用调试器,我发现了“addWellsite”的行为不叫第一次,因此,产生不结果(因此,页面刷新)。

唯一的例外可能是在当前或目标的观点缺乏初始化正在添加的(因为这两种观点都从没有在页面刷新叫action方法显示)

现在的问题是: 为什么操作方法不叫第一次?

从这样的回答 :

每当UICommand组件未能调用相关的动作,验证以下内容:

  1. UICommand部件必须放在内UIForm组件(例如h:form )。

我有啊:形式

  1. 你不能嵌套多个UIForm在对方部件(注意与包括文件!)。

这里只有一个。

  1. 应该已经发生任何验证/转换错误(使用h:messages ,让他们全部)。

我有啊:消息不显示任何错误。

  1. 如果UICommand元件放置的内侧UIData部件,确保完全一样DataModel (后面的对象UIDatavalue被保留属性)。

命令按钮是数据表内,但目标视图不需要数据模型。 正如我的控制器的代码显示,作为视图试图以检索它的对象建立。 接下来的请求不使用这个dataTable中,给我不处理它了。

  1. rendereddisabled组件和所有父组件的属性不应该评估为false申请中请求值阶段。

有没有rendereddisbled的属性。

  1. 确认没有PhaseListener或任何EventListener的请求-响应链已经改变了JSF生命周期跳过调用操作阶段。

没有的PhaseListener定义。

  1. 确保无FilterServlet在相同的请求-响应链已阻止FO的请求FacesServlet某种方式。

没有其他的Servlet定义。 我甚至不知道一个过滤器是什么。

为什么操作方法不叫第一次?

Answer 1:

当这个父这可能发生<h:form>是被由另一发起的AJAX请求呈现<h:form>预先。 所呈现的/更新<h:form>随后将失去其视图状态。 这是由JavaScript API中的错误,如描述引起JSF问题790这是已经固定为不久即将JSF 2.2。

同时,使用JSF 2.0 / 2.1,则需要explicltly指定的客户机ID <h:form>render (或用于PrimeFaces,所述update )中的其他形式的动作的属性。

<h:commandButton ...>
   <f:ajax ... render=":listForm" />
</h:commandButton>

要么

<p:commandButton ... update=":listForm" />

或者只是让一个正常的(非Ajax)的请求来代替。

也可以看看:

  • 在JSF 2通讯-内容的Ajax渲染含有另一种形式


文章来源: JSF Action Method not being called