MCPcopy Index your code
hub / github.com/OpenFeign/feign / url

Method url

core/src/main/java/feign/RequestTemplate.java:543–555  ·  view source on GitHub ↗

The URL for the request. If the template has not been resolved, the url will represent a uri template. @return the url

()

Source from the content-addressed store, hash-verified

541 * @return the url
542 */
543 public String url() {
544
545 /* build the fully qualified url with all query parameters */
546 StringBuilder url = new StringBuilder(this.path());
547 if (!this.queries.isEmpty()) {
548 url.append(this.queryLine());
549 }
550 if (fragment != null) {
551 url.append(fragment);
552 }
553
554 return url.toString();
555 }
556
557 /**
558 * The Uri Path.

Calls 5

pathMethod · 0.95
queryLineMethod · 0.95
isEmptyMethod · 0.80
appendMethod · 0.45
toStringMethod · 0.45