アノテーションとJAXBを使用@Produces
してJAX-RSの簡単な例を作成して実行しようとしています。@Consumes
@Stateless
@LocalBean
@Path("/hotel")
public class RestMain {
@GET
@Produces(MediaType.APPLICATION_XML)
@Path("{hotelId}")
public HotelRESTInfo read(@PathParam("hotelId") long hotelId) {
HotelDataSourceFake hotelDataSourceFake = new HotelDataSourceFake();
HotelRESTInfo hotelInfo = hotelDataSourceFake.getFakePlaceById(hotelId);
return hotelInfo;
}
}
web.xml:
<servlet>
<servlet-name>REST App</servlet-name>
<servlet-class>com.sun.jersey.spi.container.servlet.ServletContainer
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Jersey Web Application</servlet-name>
<url-pattern>/rest/*</url-pattern>
</servlet-mapping>
クライアントである2番目のアプリケーション。今、私は次のクライアントコードを持っています:
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;
...
Client client = Client.create();
String uri ="http://localhost:8080/RESTJEE/rest/hotel/" + hotelId;
WebResource resource = client.resource(uri);
ClientResponse response = resource.accept("application/xml").get(ClientResponse.class);
HotelRESTInfo hotelRestInfo = response.getEntity(HotelRESTInfo.class);
しかし、私はジャージーのClient、ClientResponse、WebResourceを使いたくありません。でこれをやりたいです@Consumes
。クライアントアプリケーションweb.xml
にいくつかの追加パラメータを含める必要がありますか?
両側(クライアントとサーバー)には、次のHotelRESTInfo
クラスが含まれています。
@XmlRootElement
public class HotelRESTInfo {
...
}