use of feign.jaxrs.JAXRSContract in project atlasdb by palantir.
the class TransactionRemotingTest method setup.
@Before
public void setup() {
String uri = dropwizard.baseUri().toString();
service = Feign.builder().decoder(new JacksonDecoder(mapper)).encoder(new JacksonEncoder(mapper)).contract(new JAXRSContract()).target(AtlasDbService.class, uri);
}
Aggregations