Код: Выделить всё
@Path("/v1")
@RegisterRestClient
public interface CountriesService {
@GET
@Path("/name/{name}")
Set getByName(@PathParam String name);
}
Код: Выделить всё
# Your configuration properties
org.acme.rest.client.CountriesService/mp-rest/url=https://restcountries.eu/rest #
org.acme.rest.client.CountriesService/mp-rest/scope=javax.inject.Singleton #
Есть ли способ сделать это?
Подробнее здесь: https://stackoverflow.com/questions/671 ... s-resteasy