クライアントコードを使用してRESTful Webサービスを呼び出そうとすると、消費者は実際に開発と生産の世界で実際にURLを記述する必要がありますか?RESTful Webサービスの呼び出し
public class JaxRSClient {
public static void main(String args[]){
//Creating Client
Client client=ClientBuilder.newClient();
//Setting the target on client
WebTarget wtarget=client.target("http://localhost:8080/jersey/RestWebService/HelloREST/service");
//Getting response
System.out.println(wtarget.request(MediaType.TEXT_PLAIN).get(String.class));
}
}
これは本当に意見と好みの問題です。このように、それはSOの質問には適していません。 – bhspencer