本文介绍了如何在jaxws中使用wsimport生成equals()和hashcode()方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
使用 wsimport
从我的WSDL生成的类没有 equals()
和 hashcode()
方法。如何自定义和生成客户端类以获取 equals()
和 hashcode()
方法。
The generated classes from my WSDL using wsimport
are not having equals()
and hashcode()
methods. How can I customize and generate the client classes to get equals()
and hashcode()
methods.
我不确定是否使用JAXB来实现这一点。
I am not sure about using JAXB to achieve this.
在Axis2.0生成的存根中生成这些方法但不确定为什么JAXWS中没有这样的基本功能!
In Axis2.0 generated stubs these methods are generated but not sure why such a basic thing is not available in JAXWS!
推荐答案
您可以使用JAXB2 Basics插件生成 equals()
和 hashcode()
方法:
You can use the JAXB2 Basics Plugin to generate equals()
and hashcode()
methods:
- https://github.com/highsource/jaxb2-basics
- http://confluence.highsource.org/display/J2B/JAXB2+Basics+Plugins
这篇关于如何在jaxws中使用wsimport生成equals()和hashcode()方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!