是否可以同时从 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 ?