Slide 39
Slide 39 text
@ivar_grimstad
#MicroProfile #devsum18
@Path("birthday")
public interface BirthdayService {
@GET
String daysToBirthday(@QueryParam("date") String date);
}
RestClientBuilder.newBuilder()
.baseUrl(new URL(“https://birtdayservice.duke”))
.build(BirthdayService.class)
.daysToBirthday(“2018-05-31”));
Typesafe RestClient