2016-12-15 8 views
1

を働くことができない私は、バッチにしたいラリー休止-APIのV2.21を通じて、いくつかの欠陥を追加しますが、以下のようなエラーに会った:にjava.io.IOException:によって引き起こさラリー休止-APIのV2.21のupdateCollectionが

:HTTP/1.1 405リクエストメソッド POST¼を使用して、/project/xxxxx /remove.js¼のWebサービスを見つけることができませんでした。しかし、サービスは、そのパスにメソッド(複数可)を使用して存在します。

私に手を差し上げてください、ありがとうございます。

私のコードスニペット:

Gson gson = new Gson(); 
JsonParser jsonParser = new JsonParser(); 
JsonArray defItem = new JsonArray(); 
for (DefectBean defect : defects) 
{ 
    defItem.add(jsonParser.parse(gson.toJson(defect))); 
} 
CollectionUpdateRequest defectTCollectionAddRequest = new CollectionUpdateRequest(collectionRef, defItem, true); 
CollectionUpdateResponse defectTagCollectionAddResponse = restApi.updateCollection(defectTCollectionAddRequest); 

答えて

0

あなたcollectionRefは何ですか?そしてあなたの欠陥品はどのように見えるのですか? updateCollectionメソッドは、コレクションにアイテムを追加/削除するためのものです。