Как настроить порядок свойств с помощью CXF+Aegis?

Для обратной совместимости моего сервиса мне нужно настроить порядок свойств с помощью CXF+Aegis 3.2.1.

Я должен использовать Aegis.

Aegis игнорирует аннотацию JAXB:

@XmlRootElement
@XmlType(propOrder = { "property3", "property1", "property2", })
public class MyDto {
    private String property1;

    private String property2;

    private String property3;

    public String getProperty1() {
        return this.property1;
    }

    public void setProperty1(final String property1) {
        this.property1 = property1;
    }

    public String getProperty2() {
        return this.property2;
    }

    public void setProperty2(final String property2) {
        this.property2 = property2;
    }

    public String getProperty3() {
        return this.property3;
    }

    public void setProperty3(final String property3) {
        this.property3 = property3;
    }
}

Как настроить порядок свойств с помощью CXF+Aegis?

0 ответов

Другие вопросы по тегам