java - What should I insert between <tag-class></tag-class> tags in .tld file? -


  1. 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.

  2. 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

Popular posts from this blog

javascript - jQuery: Add class depending on URL in the best way -

caching - How to check if a url path exists in the service worker cache -

Redirect to a HTTPS version using .htaccess -