作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下方法:
@PUT
@Path("/reduceEnergy/{id}/{action}")
String reduceEnergyConsumption(@PathParam("id") int id,
@PathParam("action") String action);
我想从客户端调用此方法。 (如果我有 GET 方法,我会这样写:
String response = target.path("air_quality")
.path("reduceEnergy/"+action)
.request()
.accept(MediaType.TEXT_PLAIN)
.get(String.class);
System.out.println(response);
但现在我有一个 PUT 方法。我是这样写的:
但我不知道如何完成或纠正它
Response response = target.path("aqsensor")
.path("reduceEnergy/"+pr+"/"+action)
.request()
.accept(MediaType.TEXT_PLAIN)
.put(null);
System.out.println(response.getStatus());
感谢您帮助我找到解决方案。
最佳答案
您不能在 put 中发送 null
,您需要发送 Entity
给定端点的以下定义:
@Path("myresource")
public class MyResource {
@PUT
@Path("/reduceEnergy/{id}/{action}")
public String reduceEnergyConsumption(@PathParam("id") int id,
@PathParam("action") String action) {
System.out.println("id: " + id);
System.out.println("action: " + action);
return "";
}
}
你可以这样做:
Entity<String> userEntity = Entity.entity("", MediaType.TEXT_PLAIN);
Response response = target.path("myresource/reduceEnergy/10/action")
.request()
.put(userEntity);
System.out.println("Status: " + response.getStatus());
此输出:
id: 10
action: action
Status: 200
关于java - 如何从客户端 Java 调用 PUT 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55809987/
我是一名优秀的程序员,十分优秀!