自定义标签异常错误汇总

Posted caoleicoding

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义标签异常错误汇总相关的知识,希望对你有一定的参考价值。

1、未设置empty 属性

  • 错误信息:

    严重: Servlet.service() for servlet [jsp] in context with path [/web-exercise] threw exception [/paramTag.jsp (line: 11, column: 0) The TLD for the class taglibclass.QueryTag specifies an invalid body-content (JSP) for a SimpleTag.] with root cause
    org.apache.jasper.JasperException: /paramTag.jsp (line: 11, column: 0) The TLD for the class taglibclass.QueryTag specifies an invalid body-content (JSP) for a SimpleTag.  
  • web页面截图:
    技术分享图片

  • tld配置:

    <tag>
        <name>paramTag</name>
        <tag-class>taglibclass.QueryTag</tag-class>
    
        <attribute>
            <name>driver</name>
            <required>true</required>
            <rtexprvalue>true</rtexprvalue>
        </attribute>
        <attribute>
            <name>url</name>
            <required>true</required>
            <rtexprvalue>true</rtexprvalue>
        </attribute>
        <attribute>
            <name>username</name>
            <required>true</required>
            <rtexprvalue>true</rtexprvalue>
        </attribute>
        <attribute>
            <name>password</name>
            <required>true</required>
            <rtexprvalue>true</rtexprvalue>
        </attribute>
        <attribute>
            <name>sql</name>
            <required>true</required>
            <rtexprvalue>true</rtexprvalue>
        </attribute>
    </tag>
  • 解决方案:在tld配置文件中增加:<body-content>empty</body-content> 属性

以上是关于自定义标签异常错误汇总的主要内容,如果未能解决你的问题,请参考以下文章

片段中的自定义列表适配器

Sublime Text3自定义代码片段

带有错误代码和错误消息的自定义 Python 异常

会话未在nifi自定义处理器内关闭异常

Java经典面试题汇总异常

Java异常封装(自定义错误码和描写叙述,附源代码)