java - What should I insert between <tag-class></tag-class> tags in .tld file? -
i've got problem. don't know should put between tags
<tag-class></tag-class>
. i'm trying simple webapp , i'd use (in jsp pages) own tag.and second thing uri tags don't work (i think can somehow related
<tag-class>
tags). program in intellij idea , highlights me bug (about uri tags).
<?xml version="1.0" encoding="iso-8859-1"?> <taglib 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" version="2.1"> <tlib-version>1.2</tlib-version> <short-name>randomtags</short-name> <function> <name>test</name> <function-class>mypackage.person</function-class> <function-signature>int methodfortldtesting()</function-signature> </function> <uri>randomthings</uri> <tag> <description>description</description> <name>name</name> <tag-class></tag-class> <body-content>empty</body-content> </tag> </taglib>
Comments
Post a Comment