Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to get the element of a list inside jsp using JSTL?

I have such this code inside my Spring MVC java controller class:

@RequestMapping(value = "jobs", method = { RequestMethod.GET })
public String jobList(@PathVariable("username") String username, Model model) {
    JobInfo[] jobInfo;
    JobStatistics js;
    LinkedList<JobStatistics> jobStats = new LinkedList<JobStatistics>();
    try {
        jobInfo = uiClient.getJobs(username);
           for (int i = 0; i < jobInfo.length; i++) {
             js = uiClient.getJobStatistics(jobInfo[i].getJobId());
             jobStats.add(js);
           }
        model.addAttribute("jobs", jobInfo);
        model.addAttribute("jobStats", jobStats);
    }

which uiClient will get some data from database using RMI ... now I want to show the jobs & related statistic inside my JSP file using JSTL :

<c:set var="stats" value="${jobStats}" />
        <c:forEach var="jobs" items="${jobs}">
           <c:set var="jobID" value="${jobs.JobId}"/>
          <table>
            <tr class="tr1">
                <td>${jobs.Topic}</td>
                <td>${stats.get(i).No}</td>
            </tr>
          </table>
        </c:forEach>

How do I get the LinkedList elements of Model inside my JSP using JSTL? There might be no no counter i been put in scope for me.

like image 628
Mehdi Avatar asked Jan 16 '13 07:01

Mehdi


2 Answers

In my opinion, the right answer is a combination of both of the answers you got:

use varStatus attribute of c:foreach tag

but:

"get" is not a jstl function.

<c:forEach var="jobs" items="${jobs}" varStatus="i">
   <c:set var="jobID" value="${jobs.jobId}"/>
  <table>
    <tr class="tr1">
        <td>${jobs.topic}</td>
        <td>${stats[i.index].no}</td>
    </tr>
  </table>
</c:forEach>

EDIT: this is the code finally used by the author of the question:

<c:set var="stats" value="${jobStats}" />
<c:forEach items="${jobs}" varStatus="i">
   <c:set var="jobID" value="${jobs[i.index].jobId}"/>
  <table>
    <tr class="tr1">
        <td>${jobs[i.index].topic}</td>
        <td>${stats[i.index].no}</td>
        <td>${jobID}</td>
    </tr>
  </table>
</c:forEach>
like image 165
Adrián Avatar answered Nov 11 '22 14:11

Adrián


get is not a jstl function.

<td>${stats[i.index].No}</td>
like image 27
wolfg Avatar answered Nov 11 '22 15:11

wolfg