Groovy对象通过JAXB进行编组/解编
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Groovy对象通过JAXB进行编组/解编相关的知识,希望对你有一定的参考价值。
Example of JAXB-annotated POGO, marshalled and unmarshalled via static methods of JAXB object.
import javax.xml.bind.annotation.* import javax.xml.bind.JAXB @XmlRootElement @XmlAccessorType(XmlAccessType.FIELD) // without this annotation you'll see IllegalAnnotationException when try to marshall Band() {} // no-argument constaructor is required for POGO name = n establishedYear = e } "$name founded in $establishedYear" } } // let's save // and then load
以上是关于Groovy对象通过JAXB进行编组/解编的主要内容,如果未能解决你的问题,请参考以下文章
解组 JAXB 编组列表失败并出现 NullPointerException