* In [TestRestTemplateContextCustomizer](https://github.com/spring-projects/spring-boot/blob/master/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/TestRestTemplateContextCustomizer.java) a `LocalHostUriTemplateHandler` gets created and passed to `TestRestTemplate`. * [LocalHostUriTemplateHandler](https://github.com/spring-projects/spring-boot/blob/master/spring-boot-project/spring-boot-test/src/main/java/org/springframework/boot/test/web/client/LocalHostUriTemplateHandler.java) creates `DefaultUriBuilderFactory` in the constructor and does not provide any means to modify/replace it later. * I would like to have a way to replace `DefaultUriBuilderFactory` (`RootUriTemplateHandler.handler`) with my custom implementation.