我是REST Web服務的初學者。REST的媒體類型
我編寫了一個REST程序來顯示HTML或XML。 @Path註釋的值是@Path("{typeDocument}")
。有兩種方法GET:
@GET
@Produces(MediaType.TEXT_XML)
public String getXml(@PathParam("typeDocument") String typeDocument)
顯示XML文件, 和
@GET
@Produces(MediaType.TEXT_HTML)
public String getHtml(@PathParam("typeDocument") String typeDocument)
顯示HTML。
瀏覽器火狐總是excutes getHtml當URL或者是
http://localhost:8080/sources/html或http://localhost:8080/sources/xml
但是IE總是excutes getXml()
()。
如何在不同的瀏覽器中執行URL定義的正確方法?
關於格式化的一點小心謹慎...... – skaffman 2010-06-03 08:59:12