Apache Axis WSDL 到 Java 的转换

发布于 2024-12-03 10:31:34 字数 305 浏览 1 评论 0原文

我在一个类中有一个整数字段,该字段已设为私有,并且没有提供 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 技术交流群。

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

发布评论

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

评论(1

与他有关 2024-12-10 10:31:34

当您使用 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.

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