docs(platform-http): document context-path interaction with server.servlet.context-path - #1981
Merged
Merged
Conversation
…rvlet.context-path camel.rest.context-path only prefixes rest() DSL routes, while Spring Boot's server.servlet.context-path prefixes every platform-http request including plain platform-http: consumer routes. The two stack, but this wasn't documented anywhere and was only verifiable via SpringBootPlatformHttpContextPathTest.
davsclaus
approved these changes
Sep 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
camel.rest.context-pathonly prefixes routes defined with therest()DSL. Spring Boot's ownserver.servlet.context-pathprefixes every request handled by the embedded servlet container, including plainplatform-http:consumer routes. The two stack, but this interaction wasn't documented anywhere in the starter docs — it was only verifiable by readingSpringBootPlatformHttpContextPathTest.What
Adds a "Context path" section to the platform-http starter's hand-maintained doc source (
components-starter/camel-platform-http-starter/src/main/docs/platform-http.adoc), explaining the two properties, how they combine, and a worked example matching the existing test.Docs-only change, no code or generated-file impact.
Claude Code on behalf of Federico Mariani (@Croway)