I am looking to set a pair of HashMap key values using JSTL only. Is it possible?
I know how to get key value pairs, but I have not found a way to set them.
Any help would be greatly appreciated.
Example of retrieving HashMap key / value pairs using JSTL:
<c:forEach var="hash" items="${myHashMap}"> <c:out value="${hash.key}" /> <c:out value="${hash.value}" /> ...
source share