我想将我的Jersey客户端的基本身份验证设置为针对服务器的身份验证。
我想仅使用WebTarget设置此身份验证(即不在客户端中注册身份验证)
我尝试设置以下代码,但似乎不起作用
client = ClientBuilder.newClient(lClientConfig);
WebTarget webTarget = client.target(uri);
HttpAuthenticationFeature feature = HttpAuthenticationFeature.basic(username,password);
webTarget.register(feature);
请问是否可以仅使用WebTarget进行操作?