@FeignClient(value="fooservice")
public static interface WebClientTests.TestFeignInterface
| Modifier and Type | Method and Description |
|---|---|
org.springframework.http.ResponseEntity<String> |
getNoTrace() |
org.springframework.http.ResponseEntity<String> |
getTraceId() |
org.springframework.http.ResponseEntity<Map<String,String>> |
headers() |
org.springframework.http.ResponseEntity<Void> |
noResponseBody() |
@RequestMapping(method=GET,
value="/traceid")
org.springframework.http.ResponseEntity<String> getTraceId()
@RequestMapping(method=GET,
value="/notrace")
org.springframework.http.ResponseEntity<String> getNoTrace()
@RequestMapping(method=GET,
value="/")
org.springframework.http.ResponseEntity<Map<String,String>> headers()
@RequestMapping(method=GET,
value="/noresponse")
org.springframework.http.ResponseEntity<Void> noResponseBody()
Copyright © 2023 Pivotal Software, Inc.. All rights reserved.