2

在我的课堂上,我需要一个 HashMap。如何在 tld 中声明这个?

    <attribute>
        <name>map</name>
        <required>true</required>
        <rtexprvalue>true</rtexprvalue>
        <type>java.util.HashMap</type>        
    </attribute>

更新: 上面的代码有效。但是我想指定HashMap的类型

怎么:

HashMap<?,?>

我想要的:

HashMap<String, String>
4

2 回答 2

1

我找到了解决方案:

 <type><![CDATA[java.util.HashMap<java.lang.String, java.lang.String>]]</type>
于 2012-11-23T18:32:35.170 回答
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();
}
}
于 2012-10-25T12:43:42.543 回答