如何从 jax-ws 客户端代码中删除 ArrayOfString 类

发布于 2024-11-17 02:17:55 字数 122 浏览 4 评论 0原文

当使用 wsimport 从 WSDL 生成客户端代码时,我得到了很多 ArrayOf*** 类。 我想确保我得到的是 String[] 而不是 ArrayOfString。

需要进行哪些外部定制才能实现这一目标?

When generating the client code from a WSDL using wsimport I am getting lot of ArrayOf*** classes.
I want to make sure that I get String[] instead of ArrayOfString.

What external customization needs to be done to achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

反目相谮 2024-11-24 02:17:56

到目前为止,我已经通过在实用程序方法中使用反射将 ArrayOfXXX 对象修改为 XXX[] 来完成解决方法。

As of now I have done a workaround by modifying the ArrayOfXXX object in to XXX[] by using reflection in an utility method.

暮光沉寂 2024-11-24 02:17:56

我不确定这是否是您所要求的,但如果您在 xml 响应中看到这些内容,则您可能滥用了 JAX-WS 生成的 ObjectFactory 类中的方法。

例如,下面的两行代码

factory.createArrayOfNameListItem(factory.createArrayOfNameListItem());

factory.createMyDataItemNames(arrayOfNameListItem);

生成相同类型的对象:

JAXBElement<ArrayOfNameListItem> objects

但是

factory.createArrayOfNameListItem(factory.createArrayOfNameListItem());

序列化/渲染为:

<ArrayOfNameListItem>
<Names>
  <NameListItem>
    <FirstName>
      Homer
    </FirstName>
    <LastName>
      Simpson
    </LastName>
  </NameListItem>
</Names>
</ArrayOfNameListItem>

factory.createMyDataItemNames(arrayOfNameListItem);

序列化/渲染为:

<Names>
  <NameListItem>
    <FirstName>
      Homer
    </FirstName>
    <LastName>
      Simpson
    </LastName>
  </NameListItem>
</Names>

希望这对某人有帮助。

I am not sure if this is what you are asking, but if you are seeing these in your xml response, you are probably misusing the methods in the ObjectFactory class generated by JAX-WS.

For example, the two lines of code below

factory.createArrayOfNameListItem(factory.createArrayOfNameListItem());

factory.createMyDataItemNames(arrayOfNameListItem);

produce objects of the same type:

JAXBElement<ArrayOfNameListItem> objects

however

factory.createArrayOfNameListItem(factory.createArrayOfNameListItem());

serialises / renders as:

<ArrayOfNameListItem>
<Names>
  <NameListItem>
    <FirstName>
      Homer
    </FirstName>
    <LastName>
      Simpson
    </LastName>
  </NameListItem>
</Names>
</ArrayOfNameListItem>

and

factory.createMyDataItemNames(arrayOfNameListItem);

serialises / renders as:

<Names>
  <NameListItem>
    <FirstName>
      Homer
    </FirstName>
    <LastName>
      Simpson
    </LastName>
  </NameListItem>
</Names>

Hope this helps someone.

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