Uploaded image for project: 'Commons Jelly'
  1. Commons Jelly
  2. JELLY-235

nested exceptions are displayed incorrectly with JellyException

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Open
    • Major
    • Resolution: Unresolved
    • 1.0
    • None
    • core / taglib.core
    • None

    Description

      JellyException has some built-in support for nested exceptions. In particular, when it displays a stack trace, it tries to also displays the nested exception, which is great.

      What's not so great is that when JDK 1.4 added this on its own, both Jelly and JDK try to display the nested exceptions, and you ended up seeing O(n^2) stack traces for n-level nested exception.

      Imagine a situation where N JellyExceptions are nested inside each other.
      With the following current printStackTrace:

          public void printStackTrace() {
              super.printStackTrace();
              if (cause != null) {
                  System.out.println("Root cause");
                  cause.printStackTrace();
              }
          }
      

      Outer JellyException prints its stack trace first (in which JDK prints out all the nested exceptions),
      and then JellyException prints the stack trace of the inner JellyException. Then this same step is repeatedly, causing an output like this:

      JellyExpception 3
      Caused by JellyException 2
      Caused by JellyException 1
      Root cause:
      JellyException 2
      Caused by JellyException 1
      Root cause:
      JellyException 1
      

      See the attached patch for one possible fix.

      Personally, I don't mind if JellyException choose to completely stop trying to print out the nested exception on its own, and simply delegate everything to JDK. This will make the output worse on JDK 1.3 and earlier, but the # of people using those is shrinking every day.

      Attachments

        1. ASF.LICENSE.NOT.GRANTED--JELLY.diff
          2 kB
          Kohsuke Kawaguchi

        Issue Links

          Activity

            People

              Unassigned Unassigned
              kohsuke Kohsuke Kawaguchi
              Votes:
              2 Vote for this issue
              Watchers:
              2 Start watching this issue

              Dates

                Created:
                Updated: