Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Schemagen ant 任务未在生成的 XSD 文件中生成命名空间。
在 src 文件夹中,同一个包“com.test”中有 5 个类 有人可以建议我解决这个问题吗?问候, 贾亚克里希纳
您应该发布一些关于您的课程的示例代码。现在我猜你可能想package-info.java在包中添加一个文件并添加一个@XmlSchema注释。像这样:
package-info.java
@XmlSchema
@XmlSchema(namespace = "http://your.name.space/definition") package com.test;
这有帮助吗?