Skip to content

Instantly share code, notes, and snippets.

@vikramkamath
vikramkamath / ApiClient.java
Last active June 8, 2021 23:29
Micronaut @client proxy to multi-tenant services
@Client("z.example.com") // <=== value does not matter will get replaced by HttpClientFilter Impl below
public abstract class ApiClient {
@Get("/api/orders/{orderId}")
public abstract Order getOrderBy(
@Header("x-host")String hostName, // <=== sets Header
String orderId);
}