feign-vertx
feign-vertx copied to clipboard
Use Feign on Vert.x
Bumps [com.github.tomakehurst:wiremock-jre8](https://github.com/wiremock/wiremock) from 2.27.2 to 2.35.1. Release notes Sourced from com.github.tomakehurst:wiremock-jre8's releases. 2.35.1 - Security Release 🔒 This is a security release that addresses the following issues CVE-2023-41327 - Controlled...
``` Vertx vertx = Vertx.vertx(); // get Vertx instance /* Create instance of your API */ IcecreamServiceApi icecreamApi = VertxFeign .builder() .vertx(vertx) // provide vertx instance .encoder(new JacksonEncoder()) .decoder(new JacksonDecoder())...