feign-vertx icon indicating copy to clipboard operation
feign-vertx copied to clipboard

Use Feign on Vert.x

Results 2 feign-vertx issues
Sort by recently updated
recently updated
newest added

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...

dependencies

``` 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())...