ページをレンダリングしようとしていますが、一部の EL 式で例外が発生する可能性があります。そこでまず、クリティカルな状態だけをチェックしてコードを表示するように < c:if> でブロックを囲んでみました。しかし、「エラー」の場合、ページが「HTTP 500 - 内部サーバー エラー」として再びリダイレクトされることがわかりました。したがって、ブロック内の EL 式は、どのような場合でも計算され、 < c:if> ブロックが表示されていない場合もあると思いました。したがって、このブロックが例外をキャッチすることを読んだときに、ブロックを < c:catch> で囲みました。そのため、すべてのメソッドに「例外をスローする」という宣言も追加しました。しかし、繰り返しになりますが、重大な状態が守られていない場合、私のページは 500 エラー ページにリダイレクトされます。
XHTML コードを投稿します。
<c:if test="#{!partyBean.emptySet}">
<c:catch>
<p:panel id="panel" style="margin-bottom:10px;">
<f:facet name="header" >
<h:outputLabel value="#{partyBean.currentparty.name}" />
</f:facet>
<f:facet name="actions">
<p:commandButton id="asktojoin" styleClass="ui-panel-titlebar-icon "
action="#{joinRequestBean.askForParty(partyBean.currentparty)}" value="Ask to Join"/>
</f:facet>
<f:facet name="footer" >
<p:commandButton id="pr" action="#{partyBean.previus()}" value="previousParty" rendered="#{partyBean.hasPrevious()}">
</p:commandButton>
<p:commandButton id="nx" style="margin-right:10px" action="#{partyBean.next()}" value="nextParty" rendered="#{partyBean.hasNext()}">
</p:commandButton>
</f:facet>
<h:panelGrid columns="2">
<h:outputLabel value="Symbol:" />
<h:graphicImage value="#{('/partysymbols/'.concat(partyBean.currentparty.symbol))}" width="200" height="171" />
<h:outputLabel for="program" value="Program:" />
<h:outputLabel id="program" value="#{partyBean.currentparty.program}" />
<h:link id="partyname" outcome="memberlist" value="memberlist">
<f:param name="partyname" value="#{partyBean.currentparty.name}" />
</h:link>
</h:panelGrid>
</p:panel>
</c:catch>
</c:if>
<c:if test="#{partyBean.emptySet}">
<h1>There are no parties at the moment</h1></c:if>
</h:form>
</h:body>
そして私の豆:
@ManagedBean(name="partyBean")
@SessionScoped
public class PartyBean {
@EJB
private PartyManagerLocal ejb;
private PartyDTO[] party;
int i=0;
@PostConstruct
private void init() {
i=0;
refresh();
}
private void refresh(){
Object[] list_o = ejb.getListOfParty().toArray();
party = new PartyDTO[list_o.length];
for(int i=0;i<list_o.length;i++){
party[i]=(PartyDTO)list_o[i];
}
if(i>=list_o.length)
i=list_o.length;
}
public boolean isEmptySet() {
refresh();
return party.length==0;
}
public String next() throws Exception{
refresh();
if(i<party.length-1)
i++;
return "partyview.xhtml?faces-redirect=true";
}
public String previus() throws Exception{
refresh();
if(i>0)
i--;
return "partyview.xhtml?faces-redirect=true";
}
public boolean hasPrevious(){
return i>=1;
}
public boolean hasNext(){
return i<party.length-1;
}
public PartyDTO getCurrentparty() throws Exception{
return party[i];
}
}
コード全体を表示して申し訳ありませんが、どこが間違っているのかわかりません。次に、私の恐ろしいコードについてもお詫びしますが、現時点では、それが機能することだけが必要です。
重要な条件は、配列が空であってはならないということです。Array が空になる可能性がありますが、その場合は、500 エラー ページにリダイレクトする代わりに、そのことをユーザーに通知する必要があります。
前もってありがとう、サミュエル