Iterating over hashmap injsp in struts application
- by Rozer
I have a Hashmap object that i am getting on a jsp page.
HashMap<Integer,Gift_product> gift_hm = new HashMap<Integer,Gift_product>();
gift_hm.put(17,new Gift_product("doll",67));
now i need to iterate this and display content on jsp.
as Gift_product class contains two fields name and price
jsp output should be
serial no. product name price
17 Doll 67
How can i achieve it..