我正在尝试构建一个简单的应用程序,该应用程序使用quarkus-rest-client
. 我必须注入一个 API 密钥作为标头,该标头对于 API 的所有资源都是相同的。所以我想把这个 API Key 的值(取决于环境dev/qa/prod
)放在application.properties
位于src/main/resources
.
我尝试了不同的方法来实现这一点:
- 直接使用
com.acme.Configuration.getKey
到@ClientHeaderParam
value 属性中 - 创建一个 StoresClientHeadersFactory 类,该类实现 ClientHeadersFactory 接口以注入配置
最后,我找到了下面描述的方法来使它工作。
我的问题是:有没有更好的方法呢?
这是我的代码:
- StoreService.java是我访问 API 的客户端
@Path("/stores")
@RegisterRestClient
@ClientHeaderParam(name = "ApiKey", value = "{com.acme.Configuration.getStoresApiKey}")
public interface StoresService {
@GET
@Produces("application/json")
Stores getStores();
}
- 配置.java
@ApplicationScoped
public class Configuration {
@ConfigProperty(name = "apiKey.stores")
private String storesApiKey;
public String getKey() {
return storesApiKey;
}
public static String getStoresApiKey() {
return CDI.current().select(Configuration.class).get().getKey();
}
}
- StoresController.java是 REST 控制器
@Path("/stores")
public class StoresController {
@Inject
@RestClient
StoresService storesService;
@GET
@Produces(MediaType.APPLICATION_JSON)
public Stores getStores() {
return storesService.getStores();
}
}