Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Figuring out URL binding of Stapler

Tracing Stapler's URL dispatching process

When you run Hudson with the stapler.trace system property set to true (which happens automatically when you run mvn hpi:run), Stapler will produce the log of how the incoming URL is evaluated/dispatched. This trace is made available as HTTP response headers like "Stapler-Trace-001", "Stapler-Trace-002", ...

On Firefox, use the Live HTTP header extension to inspect response HTTP headers. Firebug can do this, too.

Live-http-header-extension.png

Also, in this mode, 404 error page will also contain the similar trace in the HTML format, along with how it eventually failed and what are possible URL bindings that were available at the point of failure.

These records are meant to assist plugin developers by showing URL mapping of stapler. You can use it against Hudson core or other plugins to see how their URL binding works, too. For the complete reference of how URL mapping works in stapler, see the stapler documentation.

Back to the top