I need to use a set to not allow duplicate values.
I need to list them out using the JSTL
<c:forEach items="${mySet}" var="set">
//Code work done here
</c:forEach>
Usually I use the standard array or List here but what are the type restrictions if I want to use a HashSet?