Hi all,
i am using Struts 2. I have a Map that looks something like this.
Map<String,Object> map=new LinkedHashMap<String,Objec
t> ();
Suppose key-values are
q1-object1
q2-object2
q3-object3
How do we get the value of say "q1" in jsp.
For example if in Action class we would do like this ;
map.get("q1");
How we achieve the same in using struts 2 tags in JSP. Or is scriptlets the only way (Because if possible i wouldnt want to do it using scriptlets!!)?
Thanks in advance
Start Free Trial