我正在与一家电子商务公司合作,并且正在与 3 个不同的支付网关集成。它们都需要一个回调 URL 来回发交易状态。
我已经定义了一个资源来存储事务的状态
http://www.api.com/api/users/{userid}/order/{orderId}/payments/{paymentModeId}/paymentStatus
我定义了一个名为 IPaymentStatusResponse 的接口并创建了 3 个实现。根据 uri 路径中的 paymentModeId,将选择适当的实现来持久化交易状态。
例如:三个不同网关的回调 url 看起来像这种支付方式 1 - paytm,支付方式 2 - payu,支付方式 3- cc avenue。
http://www.api.com/api/users/300/order/501/payments/1/paymentStatus
http://www.api.com/api/users/300/order/501/payments/2/paymentStatus
http://www.api.com/api/users/300/order/501/payments/3/paymentStatus
方法签名
public void createPaymentStatus(
@PathParam("paymentModeId") int paymentModeId,
IPaymentStatusResponse response) throws MyAppException {
paymentServiceImpl.createPaymentResponse(response, paymentModeId);
}
这是解决这个问题的正确方法吗?
当我发布 HTTP 帖子时,我收到以下错误:
Can not construct instance of com.myapp.dto.payments.IPaymentStatusResponse, problem: abstract types either need to be mapped to concrete types, have custom deserializer, or be instantiated with additional type information
at [Source: org.glassfish.jersey.message.internal.ReaderInterceptorExecutor$UnCloseableInputStream@1ee3ab21; line: 1, column: 1]
其他选项,我必须为所有不同的网关定义不同的端点并映射响应对象。
更新:
可以在这里找到一个很好的解释 http://programmerbruce.blogspot.in/2011/05/deserialize-json-with-jackson-into.html
它需要响应 json 中的 type 元素来选择具体的类。带有提到的类型和我的界面配置的示例 json。这行得通。但不确定如何处理,因为响应 json 不受我控制,它来自支付网关提供商
{
"MID":"abc",
"TXNID":"T123",
"ORDERID":"100",
"BANKTXNID":"B123",
"TXNAMOUNT":"1",
"CURRENCY":"INR",
"STATUS":"TXN_SUCCESS",
"RESPCODE":"01",
"RESPMSG":"Txn Success",
"TXNDATE":"2015-12-14 02:10:29.742447",
"GATEWAYNAME":"ICICI",
"BANKNAME":"ICICI",
"PAYMENTMODE":"CC",
"type":"PayTMPaymentResponse",
"CHECKSUMHASH":"ggg"
}
界面
@JsonTypeInfo(use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY, property = "type")
@JsonSubTypes({ @Type(value = PayTMPaymentResponse.class, name = "PayTMPaymentResponse") })
public interface IPaymentStatusResponse {
}
这可以通过一些查询或路径参数来实现吗?