Maven2:使用 xmlbeans 插件时未从 .xsd 文件生成列表返回类型方法
我正在尝试使用 maven2 构建我的项目。该项目已在 netbeans IDE 中使用 ANT 成功构建。 现在的问题是,我可以使用 xmlbeans maven 插件从 .xsd 文件生成 .java 文件。但是某些以 java.util.list 作为返回类型的 getter setter 方法不会生成。
请帮助我..因此我无法进行构建:(
I am tring to build my project using maven2.This project was succesfully build using ANT in netbeans IDE.
Now the problem is, I am able to generate the .java files from .xsd files using xmlbeans maven plugin.But some getter setter methods having java.util.list as return type is not getting generated.
Please help me..I am not able to do my build beacuse of this :(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将
javasource
版本设置为 1.5 才能获得 XmlBeans 中的 List 支持。You need to set the
javasource
version to 1.5 to get List support in XmlBeans.