我正在尝试为我的自定义标签创建一个标签库。但是我在 Eclipse IDE 中遇到编译错误。这是我的 TagLib 描述:
<?xml version="1.0" encoding="UTF-8"?>
<taglib version="2.1" xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd">
<tlib-version>1.0</tlib-version>
<uri>MyFunction</uri>
<function>
<name>myFunc</name>
<function-class>com.tldcls.MyClass</function-class>
<function-signature>int age()</function-signature>
</function>
</taglib>
我在标签上收到编译错误。错误告诉:
cvc-complex-type.2.4.a: Invalid content was found starting with element 'uri'.
我无法弄清楚问题出在哪里。