Uploaded image for project: 'Tapestry'
  1. Tapestry
  2. TAPESTRY-1177

ForBean can cause NullPointerException when rendered without a template

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Minor
    • Resolution: Fixed
    • 4.1.1
    • 4.1.1
    • Framework
    • None

    Description

      Create a component which doesn't implement ITemplateComponent. In the component specification, declare a For component, but don't bind its optional "element" parameter. Call the For component's render() method.

      Stacktrace is:

      java.lang.NullPointerException
      Stack Trace:

      • org.apache.tapestry.markup.MarkupWriterImpl.end(MarkupWriterImpl.java:261)
      • org.apache.tapestry.components.ForBean.renderComponent(ForBean.java:183)
      • ...

      The problem is caused by line 140 of ForBean.java:

      String element = HiveMind.isNonBlank(getElement()) ? getElement() : getTemplateTagName();

      Because no element binding was specified, and there's no template, this returns null. The markup writer pushes the null value when begin(null) is called, then barfs when it is popped in end().

      Fix is to not call loopWriter.begin()/end() when element is null.

      Attachments

        1. ForBean.java.tapestry-1177.patch
          0.8 kB
          Phil McCarthy

        Activity

          People

            jkuhnert Jesse Kuhnert
            phl Phil McCarthy
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: