Skip to content

Instantly share code, notes, and snippets.

@njofce
Created March 7, 2021 16:44
Show Gist options
  • Save njofce/83df705d778242ed80b111e9fb1e0691 to your computer and use it in GitHub Desktop.
Save njofce/83df705d778242ed80b111e9fb1e0691 to your computer and use it in GitHub Desktop.
public static FileApi getFileAPI() {
String URL = "http://localhost:8080"; // This must be passed as an ENV variable
return Feign.builder()
.contract(new SpringMvcContract())
.target(FileApi.class, URL);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment