Results 1 to 5 of 5

Thread: HTML traces are only seen, not Spring traces

  1. #1
    Join Date
    Mar 2010
    Posts
    3

    Default HTML traces are only seen, not Spring traces

    Hi,
    I deployed the Spring's petclinic application in Spring insight but upon checking it's traces, i am only seeing HTMLs. See example below:

    POST /petclinic/findOwners.do
    HTTP Summary
    POST /petclinic/findOwners.do HTTP/1.1 HTTP/1.1 200 OK
    Requested From 127.0.0.1
    Bytes Written 5995
    Requested Session
    Locale en_US
    Context /petclinic
    ...

    What i like to see are traces on how Spring handled, for example the request, like the one below. I got this when i look at the traces of the "insight" application itself.

    - GET /insight/
    - Spring Web Dispatch
    Spring Web Dispatch
    Request GET /insight/app

    * HomeController#index()

    * Resolve view "redirect:/applications"

    * Render view "/applications"
    View Render
    View Type org.springframework.web.servlet.view.RedirectView
    Content Type text/html;charset=ISO-8859-1
    Model {empty}
    ...


    Any help would be appreciated. I also add some attachments.

    Thanks!
    Attached Images Attached Images

  2. #2
    Join Date
    Feb 2008
    Location
    Nashua, NH
    Posts
    78

    Default

    Each frame in the stack is associated with an operation in the application. When the frame in the stack is clicked on, the operation details open inside the stack. The HTTP details (headers, parameters, etc) are part of the operations for the first frame in every frame stack. Just click on the frame to open/collapse the operation details.

    I'm not sure this answered your question. The screenshots you posted both look normal. What is it you want to see?

    -Scott
    Scott Andrews

    Software Engineer, Web Products Team
    SpringSource

  3. #3
    Join Date
    Mar 2010
    Posts
    3

    Default

    Hi Scott,

    Thank you for answering my post. Looking at the attachment tcServer_petclinic.jpg, i am thinking that when i click for example, the trace "POST /petlinic/findOwners.do", i will be seeing something like Spring resolved and render the view for the request url of "findOwners.do". But, nothing was displayed. Only all the HTTP stuffs like the summary and request parameters. By the way, i am using WinXP here.

    Thanks!

  4. #4
    Join Date
    Mar 2010
    Posts
    3

    Default

    Hello,

    i added some screenshots here for comparison. If you will notice from the screenshot "spring_insight-traces.jpg", when i requested the URL /insight and i click it's trace, it shows Spring's activities behind the scenes. It shows the controller invoked and how it resolved and render the view.

    On the other screenshot, "spring_petclinic-traces.jpg", when i click the trace "GET /petclinic/welcome.do", only HTML stuffs are displayed, no Spring-related ones like the one i got with the traces form the "insight" application from the "spring_insight-traces.jpg" screenshot.

    Thanks!
    Attached Images Attached Images

  5. #5
    Join Date
    Feb 2008
    Location
    Nashua, NH
    Posts
    78

    Default

    Thanks for redoing the screen shots, the first set was cropped in a way that I couldn't see the issues.

    The instrumentation collected by Spring Insight is currently focused on annotated Spring MVC. We expanded the areas of instrumentation to also cover Spring MVC with the Controller interface with version 1.0.0.M2. I would recommend that you upgrade.

    The latest version of Spring Insight is available with STS 2.3.1.RELEASE.
    http://www.springsource.com/products/sts
    Scott Andrews

    Software Engineer, Web Products Team
    SpringSource

Posting Permissions

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