Results 1 to 2 of 2

Thread: Duplicate HTML Generated on View Redirect

  1. #1

    Default Duplicate HTML Generated on View Redirect

    I'm using a jstl view resolver, and I tend to use redirects in the success views. I've noticed a very odd behavior on the redirect. The html that is generated is duplicated.

    So in Firebug, the Net tab for the redirect shows me the response for something.do is:
    Code:
    <html>
    ...a bunch of stuff...
    </html>
    <html>
    ...a bunch of stuff...
    </html>
    However, if I refresh something.do rather than redirect, I get
    Code:
    <html>
    ...a bunch of stuff...
    </html>
    If you'd like to see what generates this I can try to pare something down, but I was wondering if this is super obvious and I just don't see it.

  2. #2

    Default Huh...

    This apparently is something with Firebug. Page source shows properly, it seems to be the Net tab in Firebug...strange. So nothing to do with Spring MVC I guess.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •