In my class, I need a HashMap. How to declare this in tld?
<attribute>
<name>map</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
<type>java.util.HashMap</type>
</attribute>
Update:
The above code works. But I want to specify the type of HashMap
How is:
HashMap<?,?>
How I want:
HashMap<String, String>
I found the solution: