I didn't know how to iterate
My datatype is Multimap<String, AlbumAndAlbumType> in which the String holds the type of albums/which genre and the values consists the list of objects of type AlbumAndAlbumType
I retrieved data from db but I don't know how to iterate and display them in a jsp page.
the multimap returns as follows
{Kollywood Private Albums=[
AlbumAndAlbumType [album_id=48, album_name=Orasaadha, album_type_id=28, album_image=null, album_description=Orasaadha Private Album, language=TAMIL, type_name=Kollywood Private Albums, type_description=Kollywood Private Albums],.........
]}
the String (Kollywood Private Albums) is key and the values are list of objects of class type(AlbumAndAlbumType)
Here I want to display heading(h2) as key and iterate the values of that key and need to display all the album names(album_name) in heading(h4)