Uploaded image for project: 'Struts 2'
  1. Struts 2
  2. WW-4674

StrutsPrepareAndExecuteFilter should check for response commited status

    XMLWordPrintableJSON

Details

    • Improvement
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 2.3.30
    • 2.3.31, 2.5.5
    • None
    • None

    Description

      In StrutsPrepareAndExecuteFilter in doFilter method there is a code fragment

      ActionMapping mapping = this.prepare.findActionMapping(request, response, true);
      if(mapping == null) {
          boolean handled = this.execute.executeStaticResourceRequest(request, response);
          if(!handled) {
                 chain.doFilter(request, response);
          }
      } else {
          this.execute.executeAction(request, response, mapping);
      }
      

      Problem is that this.prepare.findActionMapping(request, response, true) can commit response (in case of exception), but filter continues with execution of chain, in my case causing problems up in the chain.

      Attachments

        Activity

          People

            Unassigned Unassigned
            mhankus Mirek Hankus
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: