使用 JAX-WS 时如何使用我自己的自定义客户端类?
我使用 JAX-WS 作为客户端并从中生成类。生成的类的问题在于它们是简单的 pojo,没有任何方便的方法。有没有办法可以使用我自己编写的自定义类?它们将具有与生成的类相同的字段和名称,但它们将允许我创建自己的便捷方法。
I'm using JAX-WS as a client and am generating classes from it. The problem with the generated classes is that they are simple pojos without any convenience methods. Is there a way I can use my own custom classes that I've written myself, instead? They would have the same fields and name as the generated classes would, but they would allow me to create my own convenience methods.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用 JAX-WS,则应该能够在使用 wsimport 时使用
-keep
选项来保留 java 源代码。然后您应该能够在您方便的时候修改它。例如wsimport 命令参考
if you are using JAX-WS you should be able to use the
-keep
option to keep the java source code when using wsimport. Then you should be able to modify it at your own convenience. E.g.Reference for wsimport command