: fromUriString(uriString);
UriComponents components = UriComponentsBuilder.fromUriString(path).build();
for (String pathSegment : components.getPathSegments()) {
builder.pathSegment(pathSegment);
}
String fragment = components.getFragment();
if (StringUtils.hasText(fragment)) {
builder.fragment(fragment);