Учитывая следующий класс:
@XmlRootElement(name = "Person")
@AutoValue
@CopyAnnotations
public abstract class Person {
@XmlElement
abstract String name();
public static Builder builder() {
return new AutoValue_Person.Builder();
}
@AutoValue.Builder
public abstract static class Builder {
public abstract Builder name(String name);
public abstract Person build();
}
}
Когда я бегу:
Person person = Person.builder().name("Test").build();
StringWriter stringWriter = new StringWriter();
JAXB.marshal(person, stringWriter);
String xmlContent = stringWriter.toString();
System.out.println(xmlContent);
Я всегда получаю:
com.example.commands.AutoValue_Person does not have a no-arg default constructor.
this problem is related to the following location:
at com.example.commands.AutoValue_Person
JAXB annotation is placed on a method that is not a JAXB property
this problem is related to the following location:
at @javax.xml.bind.annotation.XmlElement(name=##default, namespace=##default, type=class javax.xml.bind.annotation.XmlElement$DEFAULT, required=false, defaultValue=�, nillable=false)
at com.example.commands.AutoValue_Person
Я хотел бы заставить его работать без необходимости создания адаптера, как предложено в http://blog.bdoughan.com/2010/12/jaxb-and-immutable-objects.html. У меня слишком много объектов данных, и я не хочу дублировать каждый из них. Любопытно, что для AutoValue с JAXB в GitHub, кажется, есть тонны использования без использования адаптеров: https://github.com/search?q=XmlRootElement+autovalue&type=Code