次のコード スニペットでは、「テスト アクション 2」ボタンは実行されますが、「テスト アクション 1」ボタンは実行されません。「テスト アクション 1」を実行するにはどうすればよいですか?
hcommandlink-hcommandbutton-is-not-being-invokedのポイントのいずれも適用されないことを確認しました。
<ui:composition 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:c="http://java.sun.com/jsp/jstl/core"
xmlns:shiro="http://shiro.apache.org/tags">
<h:form>
<h:messages />
<c:if test="#{null ne requestScope['breadCrumbList']}">
<div class="breadcrumb">
<h:commandButton value="Test Action 1"
action="#{bcrumbCtrl.doStuff}"
actionListener="#{bcrumbCtrl.doStuff}" />
</div>
</c:if>
<h:commandButton value="Test Action2" action="#{bcrumbCtrl.doStuff}"
actionListener="#{bcrumbCtrl.doStuff}" />
</h:form>
</ui:composition>