使用 JAX-WS 时如何使用我自己的自定义客户端类?

发布于 2024-11-29 03:09:31 字数 117 浏览 1 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

猫烠⑼条掵仅有一顆心 2024-12-06 03:09:31

如果您使用 JAX-WS,则应该能够在使用 wsimport 时使用 -keep 选项来保留 java 源代码。然后您应该能够在您方便的时候修改它。例如

wsimport -keep -p stockquote http://stockquote.xyz/quote?wsdl

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.

wsimport -keep -p stockquote http://stockquote.xyz/quote?wsdl

Reference for wsimport command

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文