我以前使用 Sun 的 JAXB RI,但遇到了一个错误,我无法使用自定义编组器来编组为空字符串。
我现在已切换到 MOXy 以避免该问题,但我发现,至少开箱即用的 MOXy 不处理私有 XmlAdapters。相反,它会引发 IllegalAccessException。有关复制此内容的示例代码,请参见下文。
有什么办法可以说服 MOXy 使用私有 XmlAdapters,还是我坚持使用公共的?我当然已经通读了文档并尝试向 Google 寻求解决方案,但没有任何反应。
@XmlAccessorType(XmlAccessType.FIELD)
@XmlJavaTypeAdapter(StringField.StringFieldAdapter.class)
public class StringField {
private static final long serialVersionUID = 1L;
@XmlValue
private String value;
public boolean isSet() {
return value != null;
}
public void reset() {
value = null;
}
public String get() {
return value;
}
public void set(String value) {
this.value = value;
}
// N.B - 'non-public' class works with RI, but not with MOXy
private static class StringFieldAdapter extends XmlAdapter<String, StringField> {
@Override
public StringField unmarshal(String v) throws Exception {
StringField field = new StringField();
if (v != null) {
field.set(v);
}
return field;
}
@Override
public String marshal(StringField v) throws Exception {
if (v != null && v.isSet()) {
return v.get();
}
else {
return null; // Switched to MOXy because this doesn't work in the RI
}
}
}
}