jsp页面中List<Map<String,String>>遍历循环显示,其中List中有三类map

jsp页面中List>遍历循环显示,其中List中有三类map,
这三类map分别有多个值。

 <c:forEach items="${dataList}" var="mapData">
     <c:forEach items="${mapData}" var="map">
         <c:out value="${map.key}"></c:out>:<c:out value="${map.value}"></c:out>  
     </c:forEach>
 </c:forEach>

这样可以把三类map的value都分别显示出来?
List> result = null;

    Map<String,String> asset = new HashMap<>();
    Map<String,String> num = new HashMap<>();
    Map<String,String> rank = new HashMap<>();