I have a route like this:
env.router().get("/confirm/:code", req -> {
return req.param("code").value();
});
I would expect that /confirm/a+b would parse to a+b, but instead it is a b. Is this the intended behavior? And if it is, where can I find the docs on what other transformations are applied?
I have a route like this:
I would expect that
/confirm/a+bwould parse toa+b, but instead it isa b. Is this the intended behavior? And if it is, where can I find the docs on what other transformations are applied?