Nezteb
05/17/2019, 8:45 PMPath.of("something") and a url is hit like /api/users/<something>
when i receive the value is it already url decoded? i.e spaces changed from %20 to just s4nchez
05/18/2019, 1:27 AMUriTemplate works: val extracted = UriTemplate.from("path/{band}").extract("path/Earth%2C%20Wind%20%26%20Fire")
assertThat(extracted.getValue("band"), equalTo("Earth, Wind & Fire"))