我有一个由wso2 Studio创建的JAX-RS Web App。在我的应用程序中,我生成一个json响应。 JSON提供程序应包含在cfx库中。 从cfx文档中我读到我可以个性化我的提供程序以从我的JSON输出中删除RootElement。
按照我在cfx-servelt.xml中添加此bean的文档
<bean class="org.apache.cxf.jaxrs.provider.json.JSONProvider">
<property name="dropRootElement" value="true"/>
<property name="dropCollectionWrapperElement" value="true"/>
<property name="serializeAsArray" value="true"/>
<property name="supportUnwrapped" value="true"/>
</bean>
不幸的是,rootElement没有删除,也没有生成错误。误包在哪里?
谢谢!
答案 0 :(得分:1)
我使用的是WSO2 Developer Studio 3.8.0和WSO2 AS 5.2.1。这是我的cxf-servlet.xml,它按预期工作:
<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans" xmlns:jaxrs="http://cxf.apache.org/jaxrs" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://cxf.apache.org/bindings/soap http://cxf.apache.org/schemas/configuration/soap.xsd http://cxf.apache.org/jaxrs http://cxf.apache.org/schemas/jaxrs.xsd">
<bean id="MyServiceBean" class="my.service.class"/>
<bean id="jsonProvider" class="org.apache.cxf.jaxrs.provider.json.JSONProvider">
<property name="dropRootElement" value="true"/>
<property name="supportUnwrapped" value="true"/>
</bean>
<jaxrs:server id="MyService" address="/myServiceURL">
<jaxrs:serviceBeans>
<ref bean="MyServiceBean"/>
</jaxrs:serviceBeans>
<jaxrs:providers>
<ref bean="jsonProvider" />
</jaxrs:providers>
</jaxrs:server>
</beans>
我有以下API方法并返回类型:
@GET
@Path("/checkEmail/{username}")
@Produces("application/json")
public CheckEmailResponse checkEmail(@PathParam("username") String username) throws Exception {
}
@XmlRootElement
public class CheckEmailResponse {
public boolean exists;
public boolean success;
}
并且,正如预期的那样,返回的JSON被解包:
{"exists":true,"success":true}
任何JSON输入参数都是相同的,例如:
{
"username": "user",
"serviceProvider": "sp"
}
我认为dropRootElement属性管理返回参数,supportUnwrapped属性管理输入参数。