GET /index.html?key=value&name=Kalle HTTP/1.1
In a request one or more query params can be added to the path. They should be parsed and stored separately in the HttpRequest object. All params comes after an ? and each param is separated with &.
Same key can be used multiple times.
Make sure to run url decode on the data.
https://www.baeldung.com/java-url-encoding-decoding
GET /index.html?key=value&name=Kalle HTTP/1.1
In a request one or more query params can be added to the path. They should be parsed and stored separately in the HttpRequest object. All params comes after an ? and each param is separated with &.
Same key can be used multiple times.
Make sure to run url decode on the data.
https://www.baeldung.com/java-url-encoding-decoding