JAXB:将自己的类导入生成的类
我正在使用 JAXB 2.2,但遇到了一些麻烦。
我的 xsd 中有以下 XML:
<xs:complexType name="Party" abstract="true">
<xs:annotation>
<xs:appinfo>
<ci:code>
public ElectronicAddress
getFirstPrimaryElectronicAddressPhone() {
for (ElectronicAddress
eAddress : electronicAddresses) {
if (checkRefCodeTypeCode(eAddress,
CodeHelper.ADDRTYPEELECORG_PHONE_CODE,
CodeHelper.ADDRTYPEELECPERS_PHONE_CODE)) {
return eAddress;
}
}
return
null;
}
[...]
现在,我需要将自己的 (CodeHelper) 类导入到生成的类中,因为 CodeHelper 与生成的源不在同一包中。
有可能这样做吗?
谢谢!
I'm using JAXB 2.2 and I'm into some trouble.
I have the following XML in my xsd:
<xs:complexType name="Party" abstract="true">
<xs:annotation>
<xs:appinfo>
<ci:code>
public ElectronicAddress
getFirstPrimaryElectronicAddressPhone() {
for (ElectronicAddress
eAddress : electronicAddresses) {
if (checkRefCodeTypeCode(eAddress,
CodeHelper.ADDRTYPEELECORG_PHONE_CODE,
CodeHelper.ADDRTYPEELECPERS_PHONE_CODE)) {
return eAddress;
}
}
return
null;
}
[...]
Now, I need to import my own (CodeHelper) class into the generated class, because CodeHelper is not in the same package as the generated source.
Is there any possibility to do that?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以编写一个 XJC 插件来实现此行为。下面的链接提供了一些创建插件的指示:
上面文章中的例子实际上是一个代码注入器插件。
You could possibly write an XJC plugin to get this behaviour. The link below has some pointers for creating a plugin:
The example in the above article is actually a code injector plug-in.