How to show multiple tables depending on key in the Map using JSTL?

后端 未结 1 1881
你的背包
你的背包 2021-01-22 17:28

I have a Map of String and List of Object which contains each datacenter and its machine. And I am currently passing this object to JSP from my Controller and then I am iteratin

1条回答
  •  执念已碎
    2021-01-22 18:11

    Try this -

    
      

    For

    Machine Name T2_95 T2_99 Syncs Syncs Behind Average
    ${m.machineName} ${m.t2_95} ${m.t2_99} ${m.syncs} ${m.syncsBehind} ${m.average}

    0 讨论(0)
提交回复
热议问题