Annotation Type Tag

    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      Class<? extends javax.servlet.jsp.tagext.JspTag> type
      Class type of the Tag.
    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      String bean
      A custom spring bean name.
      String bodycontent
      Body content of the tag.
      String name
      Name of the tag.
      boolean tryCatchFinally
      Does the tag class implements the TryCatchFinally implementation?
    • Element Detail

      • type

        Class<? extends javax.servlet.jsp.tagext.JspTag> type
        Class type of the Tag.

        Currently these types are supported:

        • javax.servlet.jsp.tagext.Tag
        • javax.servlet.jsp.tagext.IterationTag
        • javax.servlet.jsp.tagext.BodyTag
        • javax.servlet.jsp.tagext.SimpleTag
      • name

        String name
        Name of the tag. Will be derived from the class name if none is given.
        Default:
        ""
      • bodycontent

        String bodycontent
        Body content of the tag. Defaults to "JSP".
        Default:
        "JSP"
      • bean

        String bean
        A custom spring bean name. Optional.
        Default:
        ""
      • tryCatchFinally

        boolean tryCatchFinally
        Does the tag class implements the TryCatchFinally implementation?
        Default:
        false