我有一个自定义 java 类CustomInput
,我想将List<CustomInput>
对象发布到我的 java web 服务。
在播放框架 api 中,可以选择发布使用
ws.url(url).post()
我们可以在哪里发布String
,jsonNode
但我没有找到发布任何对象或 xml 的选项
我的网络服务签名如下所示
@POST
@Path(AppConstants.GET_ASSETS)
@Consumes(MediaType.APPLICATION_XML)
@Produces({ MediaType.APPLICATION_XML, MediaType.APPLICATION_JSON })
public String getAssets(
final MyRequestType objReqType) throws MyCustomException {
谁能告诉我如何实现这一目标。