将 java 对象发送到其余 WebService
我正在寻找一种将 java 对象发送到我的其余 Web 服务的好方法。
可能还是不可能?
例如,我不想将“用户”对象发送到我的休息处:
public Class User{
private String name;
private String surname;
public getName(){
return name;
}
public setName(String name){
[...]
}
可以自动生成这种休息处吗?
www.foo.com/createUser/name="foo"&surname="foo"
I'm searching a nice way to send a java object to my rest web service.
It's possible or not ?
For sample I wan't to send an "User" Object to my rest :
public Class User{
private String name;
private String surname;
public getName(){
return name;
}
public setName(String name){
[...]
}
It's possible to generate AUTOMATICALY this kind of Rest ?
www.foo.com/createUser/name="foo"&surname="foo"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我会考虑对这种 Java 对象使用 JSON 表示。
我更喜欢 JAX-RS 的 Jersey 实现,它内置了对 JAXB 上 JSON 序列化的支持。
希望这可以帮助...
I would consider using a JSON representation for this kind of Java objects.
I prefer the Jersey implementation of JAX-RS and it has built-in support for JSON serialization over JAXB.
Hope this helps...
看看 Restlet。 教程向您展示如何开始。
Restlet 允许您使用多种表示格式,包括 XML 和
Have a look at Restlet. The tutorial shows you how to get started.
Restlet allows you to use a number of representation formats, including XML and JSON.
这不是休息。 这就是RPC。
That's NOT REST. That's RPC.