12
我使用Google Chrome擴展工具Simple REST Client來測試我的Web服務。如何使用多個參數調用post方法。我在網上搜索,沒有足夠的文件爲這個應用程序。Google chrome擴展簡單REST客戶端
例POST方法
@POST
@Path("createcategory")
@Consumes("application/x-www-form-urlencoded")
@Produces(MediaType.APPLICATION_XML)
public void CreateCategory(@FormParam("cname") String cname,@FormParam("cdescription") String cdescription)
{
CategoriesBO category = new CategoriesBO();
category.setCategoryName(cname);
category.setCategoryDescription(cdescription);
CategoriesEntityHandler handler = new CategoriesEntityHandler();
try {
category = handler.createCategory(category);
} catch (Exception e) {
}
}
您對如何使用Chrome Simple REST Client有疑問嗎?那麼你的問題在這裏脫離主題。 – 2012-07-25 07:38:52