Any reason why you are extending HashMap as opposed to just using the HashMap directly? A bit beside the point but just curious...
In the servlet you set this as a session attribute (using request.setAttribute)...you can then retrieve this in your jsp file using request.getAttribute
You then iterate over the Map...
<%
Iterator<String> it = myMap.keySet().iterator();
out.print("<ul>");
while ( it.next() ){
String key = it.next();
out.print("<li>" + key + "</li>");
}
</ul>
%>
This code will print out each 'key' in an html unordered list.