1

以下の形式で、私の疑いはすべてのフィールドで言及されているタイプです。いくつかの解決策を提案してもらえますか? これは、これを消費する第三者からの要件です。

subject":{ "type":"string", "$":"キャビネット型番?" }

4

2 に答える 2

1

注: 私はEclipseLink JAXB (MOXy)のリーダーであり、JAXB (JSR-222)エキスパート グループのメンバーです。

以下は、MOXy の JSON バインディングを使用してこれを行う方法です。

ドメイン モデル (ルート)

@XmlElementアノテーションを使用して、プロパティのタイプを指定できます。タイプを に設定するObjectと、修飾されたタイプが強制的に書き出されます。

import javax.xml.bind.annotation.*;

public class Root {

    private String subject;

    @XmlElement(type=Object.class)
    public String getSubject() {
        return subject;
    }

    public void setSubject(String subject) {
        this.subject = subject;
    }

}

デモ

型修飾子が整列化されるため、値に対してキーを記述する必要があります。デフォルトでは、これは になりますvalue。プロパティを使用して、JSON_VALUE_WRAPPERこれを に変更できます$

import java.util.*;
import javax.xml.bind.*;
import org.eclipse.persistence.jaxb.JAXBContextProperties;

public class Demo {

    public static void main(String[] args) throws Exception {
        Map<String, Object> properties = new HashMap<String, Object>(3);
        properties.put(JAXBContextProperties.MEDIA_TYPE, "application/json");
        properties.put(JAXBContextProperties.JSON_INCLUDE_ROOT, false);
        properties.put(JAXBContextProperties.JSON_VALUE_WRAPPER, "$");
        JAXBContext jc = JAXBContext.newInstance(new Class[] {Root.class}, properties);

        Root root = new Root();
        root.setSubject("Cabinet model number?");

        Marshaller marshaller = jc.createMarshaller();
        marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
        marshaller.marshal(root, System.out);
    }

}

出力

以下は、デモ コードを実行した結果の出力です。

{
   "subject" : {
      "type" : "string",
      "$" : "Cabinet model number?"
   }
}

詳細については

于 2013-05-05T12:03:58.263 に答える