The webservice I'll be using expects matrix parameters:
http://tester.com/v1/customers;lastname=Jackson;firstname=Tim;bookingreference=7Y9UIY
instead of the usual
http://tester.com/v1/customers?lastname=Jackson&firstname=Tim&bookingreference=7Y9UIY
Is there anyway I can create a request using the Spring UriComponentsBuilder or an alternative?
I'm aware that I could just create it manually but hoped there was something more streamlined available.