gpt4 book ai didi

java - 抽象类中的 XmlRootElement 注释 - 可能吗?

转载 作者:行者123 更新时间:2023-11-30 09:44:10 26 4
gpt4 key购买 nike

这就是我想要做的:

@XmlRootElement(name = "bar")
@XmlAccessorType(XmlAccessType.NONE)
public abstract class Bar {
}

public final class Foo extends Bar {
@XmlElement
public String getMsg() {
return "hello, world!";
}
}

现在我正在尝试编码 Foo 类的实例:

com.sun.istack.SAXException2: unable to marshal type "Foo" as 
an element because it is missing an @XmlRootElement annotation

什么是解决方法?

最佳答案

如果父类(super class)上没有@XmlRootElement 注释,你能逃脱吗?相反,你应该把它放在你的每个子类上。 JAX-B 仍然会知道父类(super class)字段。

关于java - 抽象类中的 XmlRootElement 注释 - 可能吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8036795/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com