所以我的代码中有POST方法:
@POST
@Path("/send/{userPost}")
@Consumes(MediaType.APPLICATION_JSON)
@Produces("application/json")
public Response sendUser(@PathParam("userPost") String userPost ) {
List<Post>userPosts = new ArrayList();
Post post = new Post(99,userPost,"Bartek Szlapa");
userPosts.add(post);
User user = new User(99,"Bartek","Szlapa",userPosts);
String output = user.toString();
return Response.status(200).entity(output).build();
}
不幸的是它不起作用。我收到404错误。服务器配置正确,因为其他方法完美运行。有趣的是,当我删除{userPost}时,参数:@PathParam(&#34; userPost&#34;)字符串userPost并发送空请求:http://localhost:8080/JavaAPI/rest/api/send它有效 - 我正在获取新的User对象某些字段为null。你知道为什么我不能发送参数吗?在此先感谢您的帮助! :)
答案 0 :(得分:2)
您发送的内容不是路径参数,可根据您的API发送您的值作为路径参数,让我们假设您尝试发送“test”
http://localhost:8080/JavaAPI/rest/api/send/test
如果你想使用查询参数
@POST
@Path("/send")
@Consumes(MediaType.APPLICATION_JSON)
@Produces("application/json")
public Response sendUser(@QueryParam("userPost") String userPost ) {
并且您的请求应该是
http://localhost:8080/JavaAPI/rest/api/send?userPost=test
答案 1 :(得分:1)
您的“userPost”参数不在路径中:localhost:8080 / JavaAPI / rest / api / send?= test
您定义了此路径:
@Path("/send/{userPost}")
所以,你的URI应该是:
localhost:8080/JavaAPI/rest/api/send/test