12

我正在使用 Google chrome 扩展工具Simple REST Client来测试我的网络服务。如何使用多个参数调用 post 方法。我在互联网上搜索,这个应用程序没有足够的文档。

示例 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) {

    }

}
4

2 回答 2

15

此链接建议添加

"Content-Type: application/x-www-form-urlencoded" 

在标题框中和参数列表中:

(param1=val1&param2=val2&...) 

在对我有用的数据框中。

于 2012-12-07T20:49:48.550 回答
1

对于“标题”,每个标题都需要在换行符上:

Content-Type: application/json
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/63.0.3239.84 Safari/537.36

虽然“数据”需要采用 json 格式,但如下所示:

{"login":"USERNAME","password":"PASSWORD"}

使用参数列表对我不起作用。

于 2018-01-16T13:27:31.910 回答