我如何在 JAX-WS 中发送结果集

发布于 2024-09-03 22:51:05 字数 99 浏览 6 评论 0原文

我正在用java构建一个网络服务 我的客户是.net 例如我的表包含字符串“name”、字符串“surname”和整数“id”,我想发送所有这些 我的问题是,该方法应该返回哪种类型?

i am building a web service in java
and my client is .net
for example my table contains String "name",String "surname", and Integer "id" and i want to send all of them
my question is, which type should the method return?

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

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

发布评论

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

评论(1

凑诗 2024-09-10 22:51:12

如果我正确理解你的问题,这将是一些自定义类型,例如:

class Person {
   String name;
   String surname;
   Integer id;
   // constructor etc.
}

If I understand your question correctly, it would be some custom type like:

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