2008-10-31 5 views
0

아래 JSP 페이지의 ArrayList alt에 올바른 수의 요소를 가져 오는 데 문제가 있습니다. JSP를 볼 때 크기가 1 (<%=alt.size()%>) 일 때 나타납니다. 이것은을 생성 클래스가JSP에서 ArrayList의 크기가 적절하지 않음

<% 
    ArrayList<Alert> a = AlertGenerator.getAlert(); 
    pageContext.setAttribute("alt", a); 
%> 
    <c:forEach var="alert" items="${alt}" varStatus="status" > 
     <p>You have <%=alt.size()%> Active Alert(s)</p> 
     <ul> 
     <li><a href="#" class="linkthree">${alert.alert1}</a></li> 
     <li><a href="#" class="linkthree">${alert.alert2}</a></li> 
     <li><a href="#" class="linkthree">${alert.alert3}</a></li> 
     </ul> 
    </c:forEach> 

: 그것은 1.

을 보여주는 왜이 내 JSP 페이지이다 나는 발전기 클래스의 배열에 그 방법을 추가하는 것 같아요, 그래서 이해가 안 돼요 경고 :

package com.cg.mock; 

public class Alert { 
    String alert1; 
    String alert2; 
    String alert3; 
    public Alert(String alert1, String alert2,String alert3) { 
     super(); 
     this.alert1 = alert1; 
     this.alert2 = alert2; 
     this.alert3 = alert3; 
    } 
    public String getAlert1() { 
     return alert1; 
    } 
    public void setAlert1(String alert1) { 
     this.alert1 = alert1; 
    } 
    public String getAlert2() { 
     return alert2; 
    } 
    public void setAlert2(String alert2) { 
     this.alert2 = alert2; 
    } 
    public String getAlert3() { 
     return alert3; 
    } 
    public void setAlert3(String alert3) { 
     this.alert3 = alert3; 
    } 

} 

답변

0

당신으로 재 설계 할 수 3 경고를 얻으려면 다음 만이 알 수 있습니다. . 경고 클래스의 하나 개의 속성 각 경고에 대한 경고의 새 인스턴스를 만들 수 있습니다

package com.cg.mock; 

public class Alert { 
    String alert1; 
    public Alert(String alert1) { 
    super(); 
    this.alert1 = alert1;  
    } 
    public String getAlert1() { 
    return alert1; 
    } 
    public void setAlert1(String alert1) { 
    this.alert1 = alert1; 
    } 
} 

을 AlertGenerator에서 :.

ArrayList<Alert> alt = new ArrayList<Alert>(); 

alt.add(new Alert("alert1"); 
alt.add(new Alert("alert2"); 
alt.add(new Alert("alert3"); 

return alt; 

그리고 JSP에 : UL 인증 년대는 foreach 루프 외부에있는

<p>You have <%=alt.size()%> Active Alert(s)</p> 
<ul> 
<c:forEach var="alert" items="${alt}" varStatus="status" >  

    <li><a href="#" class="linkthree">${alert.alert1}</a></li> 

    </c:forEach> 
</ul> 

알 수 있습니다.

+0

네 .. 그게 좋은 생각이었습니다 .. 답장을 보내 주셔서 감사합니다 .. –

1

가 왜을 반환을 기대하고있다 : 이것은 내 빈 클래스가

package com.cg.mock; 

import java.util.ArrayList; 

public class AlertGenerator { 

    public static ArrayList<Alert> getAlert() { 

     ArrayList<Alert> alt = new ArrayList<Alert>(); 

     alt.add(new Alert("alert1","alert2","alert3")); 

     return alt; 
    } 

} 

입니다add 한 항목을 List에 입력 했습니까?

+0

유 내가 얻을 수있는 아이디어를 내놔 수 그것은 JSP 페이지에서 세 가지입니다. –

2

문제는 ArrayList에 하나의 Alert 인스턴스가 있지만 하나의 Alert에 alert1, alert2 및 alert3 속성이 있습니다. 당신은 하나 개의 추가 라인이

alt.add(new Alert("alert1","alert2","alert3")); 

, 그리고 루프에서되지 않습니다 :

라인에서 살펴 보자.

가능한 솔루션 :.

public class Alert { 
    private String description; 
    private String status; 
    private Date raisedOn; 
    public Alert(String description, String status) { 
     this.description = description; 
     this.status = status; 
     this.raisedOn = new Date(); 
    } 
    public String getDescription() { return description; } 
    public String getStatus() { return status; } 
    public Date getRaisedOn() { return raisedOn; } 
} 


.... 
alt.add(new Alert("Disk Almost Full", "Warning")); 
alt.add(new Alert("Disk Full", "Severe")); 
... 

... 
<table> 
    <tr><th>Description</th><th>Status</th><th>Raised</th></td> 
    <c:forEach var="alert" items="${alt}"> 
     <tr> 
      <td><c:out value="${alert.description}"/></td> 
      <td><c:out value="${alert.status}"/></td> 
      <td><c:out value="${alert.raisedOn}"/></td> 
     </tr> 
    </c:forEach> 
</table> 
+0

jsp 페이지에서 3 개를 얻을 수 있다는 아이디어를 주시겠습니까? –

0

ArrayList의이 경고는 (요소 경고는 세 개의 문자열 경고를 포함 하나의 요소가 포함

+0

jsp 페이지에서 3을 얻을 수 있다는 아이디어를 주시겠습니까 ... –

0

변경하려면 JSP로 :

<% 
    ArrayList<Alert> a = AlertGenerator.getAlert(); 
    pageContext.setAttribute("alt", a); 
%> 
<p>You have <%=alt.size()%> Active Alert(s)</p> 
<ul> 
    <c:forEach var="alert" items="${alt}" varStatus="status" > 
     <li><a href="#" class="linkthree">${alert.alert}</a></li> 
    </c:forEach> 
</ul> 

변경 AlertGenerator.java에 :

package com.cg.mock; 

import java.util.ArrayList; 

public class AlertGenerator { 

    public static ArrayList<Alert> getAlert() { 

     ArrayList<Alert> alt = new ArrayList<Alert>(); 

     alt.add(new Alert("alert2")); 
     alt.add(new Alert("alert2")); 
     alt.add(new Alert("alert3")); 

     return alt; 
    } 
} 

변경 Alert.java에 :

package com.cg.mock; 

public class Alert { 
    String alert; 
    public Alert(String alert) { 
     this.alert = alert; 
    } 
    public String getAlert() { 
     return alert; 
    } 
    public void setAlert(String alert) { 
     this.alert = alert; 
    } 
} 
+0

네 .. 고맙습니다. 완벽하게 .. –