在我的班上,我需要一个HashMap。如何在tld中声明这个?
<attribute>
<name>map</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
<type>java.util.HashMap</type>
</attribute>
更新 上面的代码有效。但我想指定HashMap的类型
如何:
HashMap<?,?>
我想要的:
HashMap<String, String>
答案 0 :(得分:1)
我找到了解决方案:
<type><![CDATA[java.util.HashMap<java.lang.String, java.lang.String>]]</type>
答案 1 :(得分:0)
我认为你不能在标签上指定那里的类型。您可以使用自定义el函数执行此操作:
<?xml version="1.0" encoding="UTF-8" ?>
<taglib xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-jsptaglibrary_2_0.xsd"
version="2.0">
<tlib-version>1.0</tlib-version>
<short-name>shortname</short-name>
<uri>http://some/uri</uri>
<function>
<name>testMethod</name>
<function-class>
somePackage.TestFunction
</function-class>
<function-signature>
java.lang.String testMethod( java.util.HashMap)
</function-signature>
</function>
</taglib>
对应班级:
public class TestFunction {
public static String testMethod(HashMap<?, ?> map) {
return map.toString();
}
}