jstl中取map,其中map的key是一个对象,value是一个list

<c:forEach items="${map }" var="item">

    //取得key中的属性
    ${item.key.name }


    <c:forEach items="${item.value }" var="arti" >
    //遍历每个key对应的list
    </c:forEach>

</c:forEach>
原文地址:https://www.cnblogs.com/henuyuxiang/p/6889531.html