wsimport 多个生成的 wsdl
我正在使用 jbossws(带有 jax-ws)来提供从带注释的 POJO 生成的 3 个 Web 服务。 这 3 个 Web 服务共享一些数据类,并且也有一个通用方法 (ping
)。 它们都驻留在同一个 java 包(命名空间
)中。
这 3 个 WSDL 文件由 jbossws
在部署时自动生成。
现在我想使用 wsimport 生成客户端代码。
一个接一个地导入 WSDL 文件时,尽管存在一些怪癖(ObjectFactory.java
被覆盖,@XmlSeeAlso
未列出所有子类),但这种方法还是有效的。
当我 一次性 WSDL 文件后,该工具开始抱怨重复的定义(例如 [ERROR] 'ping' 已定义
)并且不生成任何内容。
我尝试过更改命名空间,但这会导致出现多个包,并且可能会导致客户端出现某些类的重复。
如何为 3 个 WSDL 文件生成代码,从而不会产生重复代码、正确的 @XmlSeeAlso
注释,并且最好是正确的 ObjectFactory
?
I am using jbossws (with jax-ws) to serve 3 webservices generated from annotated POJOs.
These 3 webservices share a few data classes and also have a common method (ping
).
They all reside in the same java package (namespace
)
The 3 WSDL files are generated automatically by jbossws
at deploy time.
Now I want to generate client code using wsimport.
When I import the WSDL files one by one, this somehow works allthough there are some quirks (ObjectFactory.java
overwritten, @XmlSeeAlso
not listing all subclasses)
When I import the 3 WSDL files in one go, the tool starts complaining about duplicate definitions (e.g. [ERROR] 'ping' is already defined
) and does not generate anything.
I have tried changing namespaces, but that would lead to several packages and perhaps duplication of some classes on the client side.
How do I generate code for the 3 WSDL files, that results in no duplicate code, correct @XmlSeeAlso
annotations, and preferably a correct ObjectFactory
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我首先使用 -extension 标志来查看它是否“有效”。扩展有时会有所帮助,特别是对于重复的属性名称。
如果问题是方法/属性名称冲突,您可能必须对其进行自定义。
I'd start by using the -extension flag to see if it just "works". The extensions sometimes help, particularly with duplicate property names.
If the problem is a method/property name collision, you'll probably have to customize it.