How to iterate a List in a Map of String and List of object using JSTL?
问题 I am working on Spring MVC project in which I need to pass an object from my Controller to JSP and then I need to iterate that object and show them in a table in jsp page. Below is my class which holds the data - public class DatacenterMachineMapping { private Map<String, List<MachineMetrics>> datacenterMachines; // getters and setters } public class MachineMetrics { private String machineName; private String t2_95; private String t2_99; private String syncs; private String syncsBehind;