jaxb 使用实例
程序员文章站
2022-06-16 12:50:20
...
jdk 1.6带来了工具xjc
先 编写 xsd文件 , 把 模型 结构 组织好
使用这个命令:
xjc -p com.xiangsoft.bean ../resources/xiang.xsd
可以生成java类
生成的 ObjectFactory 可以删掉
然后 需要把 根节点对象的 CompanyConfig 加上 一个
@XmlRootElement(name = "config") 的 annotation
不然会报出 expect null but config的 异常
参考文章
jaxb2.1实例
http://www.360doc.com/content/14/1011/14/8072791_416055788.shtml
用于java 和xml 绑定
https://www.javacodegeeks.com/2015/04/%E7%94%A8%E4%BA%8Ejava%E5%92%8Cxml%E7%BB%91%E5%AE%9A%E7%9A%84jaxb%E6%95%99%E7%A8%8B.html
先 编写 xsd文件 , 把 模型 结构 组织好
使用这个命令:
xjc -p com.xiangsoft.bean ../resources/xiang.xsd
可以生成java类
生成的 ObjectFactory 可以删掉
然后 需要把 根节点对象的 CompanyConfig 加上 一个
@XmlRootElement(name = "config") 的 annotation
不然会报出 expect null but config的 异常
参考文章
jaxb2.1实例
http://www.360doc.com/content/14/1011/14/8072791_416055788.shtml
用于java 和xml 绑定
https://www.javacodegeeks.com/2015/04/%E7%94%A8%E4%BA%8Ejava%E5%92%8Cxml%E7%BB%91%E5%AE%9A%E7%9A%84jaxb%E6%95%99%E7%A8%8B.html