Spring mvc

spring mvc uses the @ PostMapping,url path similar to this:
/ xxx/yyy/ {uid}
runs using the jetty container.
when postman simulates a request, the path must be / xxx/yyy/ {uid} /? uid=11111 to get the request;
but using tomcat only needs / xxx/yyy/11111 to request it. It feels like it has nothing to do with the container. Why is this so?

Feb.28,2021
Menu