English 中文(简体)
避免从输入/输出 JSON (CXF Web Service) 中包装对象类型名称( CXF Web Service)
原标题:Avoid wrapping the object type name from input/output JSON (CXF Web Service)
  • 时间:2012-05-23 07:15:15
  •  标签:
  • json
  • cxf

我有一个CXF网络服务 类似这样的东西:

@Service("MyWebService")
public class MyWebService implements IMyWebService {    
    @Autowired
    private IMyService MyService;

    public ResponseObject doSomething(RequestObject requestObject) {
        ResponseObject responseObject = new ResponseObject;     
        .
        // do something....
        .
        .        
        return responseObject;
    }
}

期望一个输入的JSON, 说这样的话:

{ "requestObject" : { "amount" : 12.50, "userName" : "abcd123" } }

并产生一个输出JSON 像这样的东西:

{ "responseObject" : { "success" : "true", "errorCode" : 0 } }

是否有一种方法可以配置 CXF,使其以以下格式接受输入的 JSON :

{ "amount" : 12.50, "userName" : "abcd123" }

我需要删除对象类型名称请求Object / responsord Object 在输入和输出 JSON 中选择对象。 可能吗?

感谢您的帮助!

问题回答

如果你在使用maven, Json provider 类在这里:

<dependency>
    <groupId>org.apache.cxf</groupId>
    <artifactId>cxf-rt-rs-extension-providers</artifactId>
    <version>2.7.5</version>
</dependency>

您可能需要另外一种 json 提供者属性来达到您的目标 :

<jaxrs:providers>
     <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>
</jaxrs:providers>

如果您正在通过弹簧 xml 配置文件( 如应用程序Context. xml) 配置 json 提供方, 那么只需添加以下配置即可 。

<jaxrs:providers>
            <bean class="org.apache.cxf.jaxrs.provider.json.JSONProvider">
                <property name="dropRootElement" value="true" />
                <property name="supportUnwrapped" value="true" />
            </bean>
</jaxrs:providers>

滴滴式元素告诉 json 提供商放下根元素 。 参考此 < a href=" https:// cwiki.pache. org/ coimportation/ display/ CXF20DOC/ JAX- RS+Data+Bindins# JAX- RSDataBindings- JSON support" rel= “ nofollow' >JSON 支持 来提供更多配置和理解 。





相关问题
JQuery/MVC Search Issue

I have inherited a piece of work where the entry screen shows a summary of 20 calculated variables. E.g. Var A (250), Var B (79). Clicking on any of these links takes the user to a view with a ...

jQuery quicksearch plug-in tinkering with JSON

I ve implemented the quicksearch plugin by Rik Lomas and I love it for an application in a custom CMS I m building. I was wondering though, since I m going to have a bizillion items in the table if ...

JSON with classes?

Is there a standardized way to store classes in JSON, and then converting them back into classes again from a string? For example, I might have an array of objects of type Questions. I d like to ...

PHP json_decode question

i m trying to use json_decode to combine a few json objects and then re-encode it. my json looks like: { "core": { "segment": [ { "id": 7, "...

Converting JSON data to Java object

I want to be able to access properties from a JSON string within my Java action method. The string is available by simply saying myJsonString = object.getJson(). Below is an example of what the string ...

热门标签