Fix a typo in sample code

I found a typo in the latest release.
It should be `@FeignClient(url = "http://localhost:8080")`
This commit is contained in:
Kwangyong Kim
2022-04-29 16:22:41 +09:00
committed by Olga Maciaszek-Sharma
parent 8989036e93
commit a26095bb6c

View File

@@ -385,7 +385,7 @@ For example, if you had this Feign client
[source,java,indent=0]
----
@FeignClienturl = "http://localhost:8080")
@FeignClient(url = "http://localhost:8080")
public interface DemoClient {
@GetMapping("demo")