I have a forEach loop that looks like this:
<c:forEach var="getDetailsList" items="${getDetailsList}">
</c:forEach>
Each loop in the list looks like this:
id=1
desc=HELLO WORLD
203=1
211=0
id and desc are always the same but 203 and 211 would be dynamic numbers.
When I try to access 203 and 211 e.g.
<c:out value="${getDetailsList.203}"/>
I get a 500 error:
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
Is what I'm trying to do simply not achievable with JSTL?