首页 > 代码库 > jaxb 异常 Class has two properties of the same name及其它

jaxb 异常 Class has two properties of the same name及其它

这种异常主要是因为在属性上使用了@XmlElement注释,

但是在类上没有使用@XmlAccessorType(XmlAccessType.FIELD)注释

@XmlElement(name="MON")
 private TemplateDay templateMon;

所以在类上加上就可以了。

还有对于集合的方式

//这个不用再使用注解的话直接使用template名字作为最外层了
 private List<TemplateXml> template;

 

还有就是最外层的类一定要使用@XmlRootElement(name="weekTemplate")

标签,要不会报一个找不到标签的异常。

jaxb 异常 Class has two properties of the same name及其它