web-dev-qa-db-ja.com

JSFでforeachループを使用する

ページにコマンドボタンのリストを作成する必要がありますが、いくつかの問題があります。 Beanからrequest.setAttributeを介してリストを渡し、一度に1つの値を取得すると機能するように見えますが、foreachループを実行すると、それらはすべてnullのように見えます(したがって、生成され、デフォルト値0、 ""など、私が知る限り)。どんな助けも大歓迎です!追加されたコードでは、foreachループの外側にボタンを作成するときに正しい値が取得されますが、ループ自体を実行するときには取得されません。 Listは整数型で、後でJavaオブジェクト(同じ問題に遭遇))になります。JSFバージョン2.2を使用します。logtest()とgotoprofile()は両方ともInterestpointerを出力します。

私の豆は:

@ManagedBean(name="MyProfile")
@RequestScoped

そして、変数myInterestListをBeanに次のように設定します。

HttpSession session = (HttpSession) FacesContext.getCurrentInstance().getExternalContext().getSession(true);         
session.setAttribute("myInterestProfileName", profileName);


<%@taglib prefix="c" uri="http://Java.Sun.com/jsp/jstl/core"%>
<%@taglib prefix="sql" uri="http://Java.Sun.com/jsp/jstl/sql"%>
<%@ page import="Java.util.List,com.jsflogin.stringWithPointer" %>

<%@taglib prefix="h" uri="http://Java.Sun.com/jsf/html"%>
<%@ taglib prefix="f" uri="http://Java.Sun.com/jsf/core" %>
<%@page contentType="text/html" pageEncoding="UTF-8"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<html>
 <f:view>



<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>JSF Successfull login</title>
</head>
<body>


    <h:form id="forloop">
            <c:set var ="myTempList" value="${myInterestListYay}" scope="session"/>
            <c:out value="interest list"/><p>
            <h:commandButton value="#{myInterestListYay[1]}" action="#{MyProfile.logTest}">
                 <f:setPropertyActionListener target ="#{MyProfile.interestPointer}" value = "#{myInterestListYay[1]}"/>
            </h:commandButton><p>


            <ui:repeat var="orly"value="${myInterestListYay}" varstatus="status"> 
                 <c:out value="${status.index}"/><h:commandButton value="#{orly}" action="#{MyProfile.logTest}">
                 <f:setPropertyActionListener target ="#{MyProfile.interestPointer}" value = "#{orly}"/>
            </h:commandButton><p>
           </ui:repeat>
           <c:forEach var="orly" items="${MyProfile.interestsAndPointers}"  varStatus="status" >
                 <c:out value="${status.index}"/><c:out value=": "/><c:out value="${orly.stringName}"/><h:commandButton value="go to interest page" action="#{MyProfile.goToInterestProfile}">
                 <f:setPropertyActionListener target ="#{MyProfile.interestPointer}" value = "#{orly.pointer}"/>
            </h:commandButton><p>
            </c:forEach>     
        </h:form>



    </body>
   </f:view> 
</html>
11
user3058296

JSF 2を使用している場合、ページをxhtmlに変更する必要があります。その後、i:repeatを使用して、faceletsからさらに多くの利点を得ることができます。

私は2つの非常に単純なページを作成しました。1つはJSP、もう1つはXHTMLです。要求スコープでマネージドBeanを使用します。両方とも機能しており、3つのボタンを連続してレンダリングします。始めるのが簡単だったので、Glassfishをサーバーとして使用していることに注意してください。 Tomcat(7.x)の場合、jsf-api、jsf-impl(2.x)、およびjstl(1.2)ライブラリをクラスパスにコピーする必要がある場合があります。

これはJSPページです。

<%@page contentType="text/html" pageEncoding="UTF-8"%>

<%@taglib prefix="f" uri="http://Java.Sun.com/jsf/core"%>
<%@taglib prefix="h" uri="http://Java.Sun.com/jsf/html"%>
<%@taglib prefix="c" uri="http://Java.Sun.com/jsp/jstl/core"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">

<f:view>
  <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
        <title>JSP Page</title>
    </head>
    <body>
        <h:form>
          <c:forEach var="item" items="#{cart.items}">
            <h:commandButton value="#{item}"/>
          </c:forEach>
        </h:form>
    </body>
  </html>
</f:view>

XHTMLページ:

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:h="http://xmlns.jcp.org/jsf/html"
  xmlns:ui="http://Java.Sun.com/jsf/facelets">
  <h:head>
    <title>Simple JSF</title>
  </h:head>
  <h:body>
    <h:form>
        <ui:repeat value="#{cart.items}" var="item">
            <h:commandButton value="#{item}" />
        </ui:repeat>   
    </h:form>
  </h:body>
</html>

なぜリクエストスコープでBeanを使用し、セッションでそこに変数を設定するのですか?シンプルに保ち、Beanをセッションスコープに変更します。

@ManagedBean(name = "cart")
@SessionScoped
public class CartBean {

  private List<String> items;

  public CartBean() {
    items = new ArrayList<>();
    items.add("shirt");
    items.add("skirt");
    items.add("trouser");
  }

  public List<String> getItems() {
    return items;
  }

}
32
Spindizzy