added protocol to url

This commit is contained in:
Spencer Gibb
2015-01-29 11:14:02 -07:00
parent d80ebcb223
commit e4a421d826

View File

@@ -18,7 +18,7 @@ public class FeignClientApplication {
}
}
@FeignClient(url = "example.com")
@FeignClient(url = "http://example.com")
interface RestClient {
@RequestMapping(value = "/", method = RequestMethod.GET)
String hello();