【发布时间】:2012-10-22 07:50:38
【问题描述】:
是否可以同时从 sitebricks 客户端向 sitebricks 服务发送两个或多个对象?
例如,我有一个Person 对象和一个JobApplication 对象。我可以这样做吗:
public class ApplicationStorage {
@Post
public void post(Person person, JobApplication job) {
// ...
}
}
WebClient client = web.clientOf("service url") ..... // here how to send the two objects ?
【问题讨论】:
标签: rest sitebricks