Apache Axis WSDL 到 Java 的转换
我在一个类中有一个整数字段,该字段已设为私有,并且没有提供 setter 方法,但是当我使用 WSDL2Java 生成客户端时,生成的类有一个 setter 方法。
为什么会这样呢?
我正在使用 Apache Axis 2。
我将代码放在更多解释中
public class MyClass {
private int id;
public int getId() {
return id;
}
}
那么我应该如何做才能在生成客户端时隐藏 setter 方法。
I have a integer field in a class which I have made private and no setter method is provided but when I generate the client with WSDL2Java, the generated class has a setter method.
Why is it so?
I am using Apache Axis 2.
I am putting the code for more explanation
public class MyClass {
private int id;
public int getId() {
return id;
}
}
So what should I do to hide the setter method when client is generated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当您使用 POJO 创建 Web 服务时,它会生成一个 wsdl 文件。
WSDL2java工具使用的是生成的wsdl文件。但这并不了解您用来生成 wsdl 的原始 POJO。目前 Axis2 中无法仅生成 bean 类的 getter 方法。
When you creating a web service using a POJO it generates a wsdl file.
What WSDL2java tool uses is that generated wsdl file. But that does not have any idea of the original POJO you use to generate the wsdl. Currently there is no way in Axis2 to generate only the getter methods of the bean classes.