I'm trying to handle requests like this ...
"http://someINSANEdomainFORsite.coolsuffix/" + Some text
For example:
http://someINSANEdomainFORsite.coolsuffix/stackoverflowIsBesthttp://someINSANEdomainFORsite.coolsuffix/JettyCool
I don't know how to do this I think there is some way to handle this, becouse its extremely common situation.
Maybe there is some ContextHandler to do this or there isnt.
I tried to search some examples
Those examples are just paths in a request, not http params, nor http parameters, nor query strings, nor form details.
If using Jetty 12, and a Jetty
Handler, it would look like this ...The differences between those paths are ...
.getPath()is the raw path, as-is given to Jetty..getDecodedPath()is the decoded raw path..getCanonicalPath()is the decoded raw path and then normalized.