12

次の構造のJavaクラスがあります(クラス名は何も意味しません。私はただ作っただけです)。

package test;

import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import javax.xml.bind.Marshaller;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlValue;

@XmlRootElement
public class Test
{
    @XmlAccessorType(XmlAccessType.FIELD)
    static class Machine
    {
        @XmlElementWrapper(name="servers")
        @XmlElement(name="server")
        List<Server> servers = new ArrayList<Server>();
    }

    @XmlAccessorType(XmlAccessType.FIELD)
    static class Server
    {
        Threshold t = new Threshold();
    }

    @XmlAccessorType(XmlAccessType.FIELD)
    static class Threshold
    {
        RateThreshold load = new RateThreshold();
    }

    @XmlAccessorType(XmlAccessType.FIELD)
    static class RateThreshold
    {
        @XmlAccessorType(XmlAccessType.FIELD)
        static class Rate
        {
            int count;
            Period period = new Period();
        }

        @XmlAccessorType(XmlAccessType.FIELD)
        private static class Period
        {
            @XmlAttribute
            private String type = "second";

            @XmlValue
            private float period;
        }

        Rate min = new Rate();
        Rate max = new Rate();
    }

    @XmlElementWrapper(name="machines")
    @XmlElement(name="machine")
    List<Machine> machines = new ArrayList<Machine>();

    public static void main(String[] args)
    {
        Machine m = new Machine();
        Server s = new Server();
        s.t.load.max.count = 10;
        s.t.load.min.count = 1;
        m.servers.add(s);

        Test t = new Test();
        t.machines.add(m);

        JAXBContext jaxbContext;
        Marshaller marshaller;
        try
        {
            jaxbContext = JAXBContext.newInstance(Test.class);
            marshaller = jaxbContext.createMarshaller();
            marshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
            marshaller.marshal(t, System.out);
        }
        catch (JAXBException e)
        {
            e.printStackTrace();
        }
    }
}

私が抱えている問題は、Test インスタンスをマーシャリングするときに JAXB によって生成される XML 出力にあります。XML 出力は常に次のようになります。

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<test>
    <machines>
        <machine>
            <servers>
                <server>
                    <t>
                        <load>
                            <min>
<count>1</count>
<period type="second">0.0</period>
                            </min>
                            <max>
<count>10</count>
<period type="second">0.0</period>
                            </max>
                        </load>
                    </t>
                </server>
            </servers>
        </machine>
    </machines>
</test>

ご覧のとおり、一部の要素が適切にインデントされていません (つまり、最も深い要素、count および period)。何故ですか?JAXB コンテキストの作成方法に何か問題がありますか? または、JAXB によって再帰的にインデントできる要素の数に上限はありますか? どうすればこれを修正できますか? JAXB_FORMATTED_OUTPUT も true に設定しましたが、不適切なインデントが得られることに注意してください。

ありがとう。

4

4 に答える 4

9

インデントは modulo 8 で発生します。

com.sun.xml.bind.v2.runtime.output.IndentingUTF8XmlOutput

あなたが見つけます

int i = depth%8;
于 2010-07-19T10:10:15.063 に答える
2

マーシャラーのメソッドのオーバーロードの 1 つはmarshal()XMLStreamWriter を受け入れるため、独自の書式設定 XML ストリーム ライターを作成することで、JAXB の参照実装の頭の痛い書式設定メカニズムをバイパスできます。あなたは次のようなことをすることになります:

public static void SaveContainer( Container container, OutputStream stream ) throws ...
{
    XMLOutputFactory factory = XMLOutputFactory.newInstance();
    XMLStreamWriter writer = factory.createXMLStreamWriter( stream, "UTF-8" );
    writer = new MyAwesomeCoolFormattingXMLStreamWriter( writer );
    marshaller.marshal( container, writer );
}
于 2013-07-12T10:52:16.483 に答える
1

限界はないと思います。私は何の問題もなく、非常に深い入れ子を見てきました。空白の制御はありますか?また、予期しない出力を作成するRateThresholdクラスの定義を提供していません。

于 2009-11-09T16:25:15.363 に答える
-1

線幅を設定する必要があります - デフォルトは 72 です。

OutputFormat of = new OutputFormat();

of.setLineWidth(1000);

于 2013-06-20T11:21:38.527 に答える