JSF 1.2 - iterate over a Map that contains Collections
Asked Answered
B

1

7

Using JSF 1.2 and JSP....

Is it possible to iterate over a Map whose values contain Collections?

I have a Map that looks like this:

Map<String, List<Foo>> myMap;

I would like to iterate over myMap and draw a separate table for each key.

Each table will contaim multiple rows.

Each row will represent a Foo object from the ArrayList mapped to the current key.

Sadly we are using JSF 1.2 and JSP.

I was hoping I could use a nested <h:dataTable> tag, but I'm not having any success.


Edit:

Here is my current JSP code after consulting BalusC's answer:

                    <c:forEach items="#{someModule$someBean.prefMap}" var="mapEntry">
                        <br/><br/><p>Key: <h:outputText value="#{mapEntry.key}"/></p>
                        <h:dataTable value="#{mapEntry.value}" var="pref">
                            <h:column><h:outputText value="#{pref.defaultFieldLabel}"/></h:column>
                            <h:column><h:outputText value="#{pref.fieldLabel}"/></h:column>
                        </h:dataTable>
                    </c:forEach>

It causes the following exception:

javax.servlet.jsp.JspTagException: Don't know how to iterate over supplied "items" in <forEach>


Here is some code from my Managed Bean.

Note that I'm using HashMap and ArrayList instead of Map and List

(I read somewhere you couldn't use interfaces, which also don't work)

private HashMap<String, ArrayList<Foo>> prefMap;

public HashMap<String, ArrayList<Foo>> getPrefMap()
{
  if (prefMap == null)
  {
    buildPrefMap();
  }
  return prefMap;
}

private void buildPrefMap()
{
  prefMap = new HashMap<String, ArrayList<Foo>>();
  for (Foo mdp : getFooArray())
  {
    String cat = mdp.getField().getCategory();
    if (! prefMap.containsKey(cat))
    {
      ArrayList<Foo> mpl = new ArrayList<Foo>();
      mpl.add(mdp);
      prefMap.put(cat, mpl);
    }
    else
    {
      prefMap.get(cat).add(mdp);
    }
  }
}

private void dumpMapInfo()
{
  StringBuilder sb = new StringBuilder();
  Map<String, ArrayList<Foo>> theMap = getPrefMap();
  for (String key : theMap.keySet())
  {
    sb.append(key + ": " + theMap.get(key).size());
  }
  System.out.println("\n\n" + sb.toString());
}

Calling dumpMapInfo before rendering the page confirms that the Map is not null and is populated as expected.

Breton answered 2/10, 2012 at 20:10 Comment(2)
Sorry, missed the JSF 1.2 part. This might be helpful: https://mcmap.net/q/824180/-ui-repeat-doesn-39-t-work-with-mapRodl
Unfortunately we're using JSP (not Facelets).Breton
W
17

JSF doesn't have any component which can iterate over a Map. Only the JSTL <c:forEach> can iterate over a Map. Each iteration gives you a Map.Entry back which in turn has getKey() and getValue() methods. You can in turn use a <h:dataTable> to iterate over the map value.

<c:forEach items="#{bean.map}" var="entry">
    <p>Key: <h:outputText value="#{entry.key}" /></p>
    <h:dataTable value="#{entry.value}" var="foo">
        <h:column><h:outputText value="#{foo.prop1}" /></h:column>
        <h:column><h:outputText value="#{foo.prop2}" /></h:column>
        <h:column><h:outputText value="#{foo.prop3}" /></h:column>
    </h:dataTable>
</c:forEach>

Update this works only when you're using JSTL 1.2. This fails in JSTL 1.1 because #{} is not recognized in JSTL 1.1 tags and hence you're forced to use ${}, but this in turn fails in the nested JSF components because they accept #{} only. You'd basically need to fall back to "plain" JSP/HTML in that entire piece of code, or, better, grab Tomahawk's <t:dataList>.

Wineshop answered 2/10, 2012 at 23:32 Comment(10)
I get the following exception: javax.servlet.jsp.JspTagException: Don't know how to iterate over supplied "items" in &lt;forEach&gt; Note that we are using JSF 1.2 and are using Sun Application Server 9.0_1Breton
Works fine for me with JSTL 1.2 and Tomcat 6.0.35 (with web.xml set to Servlet 2.5). What JSTL and container version exactly are you using?Wineshop
SJAS 9.0 uses JSTL 1.1, but it should work as good. Are you certain that the EL syntax is correct? You could get this error on e.g. <c:forEach items="bean.map"> without the #{} or ${}.Wineshop
How do I check which JSTL version we're using? I believe we are using Servlet 2.5 (web.xml says versoin="2.5").Breton
System.out.println(ForEachTag.class.getPackage().getImplementationVersion());.Wineshop
Ok... I don't mind using a helper method to iterate over Map.keySet() as long as I can achieve nested looping to iterate over the map keys AND the array lists in the buckets.Breton
I take my words back. It actually works on JSTL 1.1 when you remove the $ from the backing bean name and use ${} notation "the usual JSP way". It just won't mix with $ in bean name and with #{} in nested JSF components.Wineshop
Unfortunately those idiotic bean names are generated by the framework we use and they cannot be modified. Also, we need to use nested JSFF components. So... In other words it sounds like we may be SOL.Breton
Try upgrading to JSTL 1.2. I'm however afraid that you've to modify the server libs for this. I think it's after all better to adopt Tomahawk for its <t:dataList> (and the <t:saveState> awesomeness which simulates JSF2 view scope).Wineshop
I've added Tomahawk to our project. Looks like I will have to create a helper class to provide map iteration functionality since <t:dataList> does not operate on a Map.Breton

© 2022 - 2024 — McMap. All rights reserved.