0

提前感谢您就我在 CXF REST 提供程序中面临的以下问题提供建议。

我已经使用 Apache CXF 开发了 REST Web 服务服务器。以下是合同定义。请注意,这是在骆驼上下文中使用的。

public class PaymentSandboxService {

    @POST
    @Consumes({"application/json", "application/x-www-form-urlencoded"})
    @Produces({"application/json", "application/x-www-form-urlencoded"})
    @Path("/2_1/payment/{endUserId}/transactions/amount")
    public Response charge(@Body
    final AmountTransaction amountTransaction, @PathParam("endUserId")
    final String endUserId) throws IOException {

        return null;
    }
}

以下是我的 bean 定义:

    <cxf:rsServer id="rsServer" address="/{{publicAddress}}"  serviceClass="a.b.cPaymentSandboxService"
        loggingFeatureEnabled="true">
        <cxf:providers>
            <ref bean="jsonProvider" />
            <ref bean="formUrlEncodeProvider" />
        </cxf:providers>
    </cxf:rsServer>


<bean id="jsonProvider" class="org.apache.cxf.jaxrs.provider.JSONProvider">
  <property name="marshallAsJaxbElement" value="true" />
</bean>
<bean id="formUrlEncodeProvider" class="org.apache.cxf.jaxrs.provider.FormEncodingProvider" />

当我使用 Content-Type 'application/json' 发送请求时,一切正常。但是,当使用 Content-Type 'application/x-www-form-urlencoded' 发送请求时,请求会到达服务器,但在将正文转换为所需数据类型时失败。以下是我在 Fuse esb 日志中获得的部分日志。

部分日志:

ID: 17
Address: http://cnb69:8181/cxf/paymentsandbox/2_1/payment/tel:+916309700000/transactions/amount
Encoding: ISO-8859-1
Http-Method: POST
Content-Type: application/x-www-form-urlencoded
Headers: {Accept=[application/json], accept-encoding=[gzip,deflate], Authorization=[Basic a2FzdW5wYXlzYW5kYm94OnBANTV3MHJk], connection=[keep-alive], Content-Length=[670], content-type=[application/x-www-form-urlencoded], Host=[cnb69:8181], User-Agent=[Apache-HttpClient/4.1.1 (java 1.5)]}
Payload: {
    "amountTransaction": {
        "clientCorrelator": "54321",
        "endUserId": "tel:+916309700000",
        "paymentAmount": {
            "chargingInformation": {
                "amount": "10.2662",
                "currency": "USD",
                "description": [
                    "Alien Invaders Game"
                ]
            },
            "chargingMetaData": {
                "onBehalfOf": "Example Games Inc",
                "purchaseCategoryCode": "Game",
                "channel": "SMS",
                "taxAmount": "0"
            }
        },
        "referenceCode": "REF-12345",
        "transactionOperationStatus": "CHARGED"
    }
}
--------------------------------------
2013-07-05 13:44:27,477 | WARN  | qtp1316166688-257    | org.apache.cxf.jaxrs.utils.JAXRSUtils | No message body reader has been found for request class AmountTransaction, ContentType : application/x-www-form-urlencoded.
2013-07-05 13:44:27,478 | INFO  | qtp1316166688-257    | org.apache.cxf.interceptor.AbstractLoggingInterceptor | Outbound Message
---------------------------
ID: 17
Response-Code: 415
Content-Type: text/xml
Headers: {Date=[Fri, 05 Jul 2013 08:14:27 GMT], Content-Length=[0]}
--------------------------------------
4

1 回答 1

1

解决方案的副本(来自 Sergey) http://cxf.547215.n5.nabble.com/Consume-quot-application-x-www-form-urlencoded-quot-Content-Type-in ​​-REST-Web-Service -cxf-rsServer-td5730399.html#a5730446

不同的解决方案是:

  • 有一个 Form 或 MultivaluedMap 参数而不是 AmountTransaction 并手动填充 AmountTransaction
  • 有一个自定义提供程序(如您所建议的)
  • 使用带有 AmountTransaction 的 cxf 扩展 @FormParam("")
  • 使用 JAX-RS 2.0 @BeanParam 并使用 FormParam 注释 AmountTransaction 属性
于 2013-07-10T10:24:14.053 回答