jsf 2 - JSF <h:commandButton action> 不工作



<h:commandButton action>在以下代码截图中不起作用。

豆(员工.java):-

        public String deleteEmployee(){
        return "success3";
            }

JSF页面(删除员工.xhtml):-

<h:form>
    <h:commandButton action="employee.deleteEmployee" type="submit" value="delete"/>
</h:form> 

人脸配置.xml:-

    <managed-bean>
      <description>Employee navigation</description>
      <managed-bean-name>employee</managed-bean-name>
      <managed-bean-class>erpJavaFiles.Employee</managed-bean-class>
      <managed-bean-scope>application</managed-bean-scope>
    </managed-bean>
<navigation-rule>
        <from-view-id>/add-Employee.xhtml</from-view-id>
        <navigation-case>
            <from-outcome>success</from-outcome>
            <to-view-id>/CRM.xhtml</to-view-id>
            <redirect/>
        </navigation-case>
        <navigation-case>
            <from-outcome>failure</from-outcome>
            <to-view-id>/home.xhtml</to-view-id>
            <redirect/>
        </navigation-case>
    </navigation-rule>
    <navigation-rule>
        <from-view-id>/delete-employee.xhtml</from-view-id>
        <navigation-case>
            <from-outcome>success3</from-outcome>
            <to-view-id>/CRM.xhtml</to-view-id>
        </navigation-case>
    </navigation-rule>
第二个导航规则

不起作用,但第一个导航规则正常工作。提前谢谢。

您在<from-view-id>中拼错了employee

<from-view-id>/delete-employee.xhtml</from-view-id>

相关内容

  • 没有找到相关文章