在JAVA中使用HttpURLConnection的PATCH请求

时间:2017-07-15 16:44:49

标签: java httpurlconnection

如何在JAVA中使用HttpURLConnection执行RESTHeart API的PATCH请求。它将405作为状态返回。

-bash:  | while read remote; do git branch --track "${remote#origin/}" "$remote"; done && git fetch --all && git pull --all: No such file or directory

1 个答案:

答案 0 :(得分:0)

Http代码405表示不允许的方法。这表示您的Web服务器不允许PATCH请求,并且您需要将其配置为接受PATCH方法类型。