Get ahead
VMware offers training and certification to turbo-charge your progress.
Learn moreThis project provides OpenFeign integrations for Spring Boot apps through autoconfiguration and binding to the Spring Environment and other Spring programming model idioms.
@SpringBootApplication
@EnableFeignClients
public class WebApplication {
public static void main(String[] args) {
SpringApplication.run(WebApplication.class, args);
}
@FeignClient("name")
static interface NameService {
@RequestMapping("/")
public String getName();
}
}
We welcome contributions. You can read more on how to contribute to the project here.
spring-cloud-feign
tag.Commercial Support is provided as part of the VMware Spring Runtime offering.
Bootstrap your application with Spring Initializr.