REST:客户端可以通过 POST 传递包装对象吗?
是否可以使用 POST 将包装器对象传递到 REST Web 服务?
Is it possible to pass a wrapper object using POST to a REST Web Service?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
是否可以使用 POST 将包装器对象传递到 REST Web 服务?
Is it possible to pass a wrapper object using POST to a REST Web Service?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
是的,您可以传递包装对象(类的对象)。
球衣休息客户端示例:
添加依赖项:
ForGetMethod 并传递两个参数:
GetMethod 传递一个参数并获取列表的响应:
在上面它返回一个列表,我们将其接受为列表,然后将其转换为 Json 数组,然后将 Json 数组转换为列表。
如果Post请求传递Json对象作为参数:
这里User是用户类的对象。其中 m pssing 在 post 参数中。
Yes You can pass a Wrapper Oject (A object of a class ).
Examples of jersey Rest client :
Adding dependency :
ForGetMethod and passing two parameter :
GetMethod passing one parameter and Getting a Respone of List :
In Above It Returns a List which we are accepting as a List and then converting it to Json Array and then Json Array to List .
If Post Request passing Json Object as Parameter :
Here User is a object of user class . which m pssing in post parameter .