自从我在电脑上安装了GitBash后,提示就一直没有反应。我想我已经把罪魁祸首降低到__git_ps1命令了。
此命令的时序如下所示,以及输出:
$ time __git_ps1
+ __git_ps1
+ local pcmode=no
+ local detached=no
+ local 'ps1pc_start=\u@\h:\w '
+ local 'ps1pc_end=\$ '
+ local 'printf_format= (%s)'
+ case "$#" in
+ printf_format=' (%s)&
我想通过Jersy客户端调用一些“升级”REST API,它被声明为PUT,不需要任何正文内容。
但是当我请求这个接口时,如下所示:
webTarget.request().put(Entity.json(null));
它给出的错误如下:
Entity must not be null for http method PUT.
所以需要知道,在jersy客户端中有没有办法调用实体为空的PUT方法。