我们可以使用 JAX-RS 在 java web 服务中发送或返回 char

发布于 2024-12-06 06:09:22 字数 96 浏览 1 评论 0原文

我是网络服务新手。 我有一些接受 char 作为输入参数的服务,例如 char langPref 等。 当我尝试公开该服务时,它抛出异常。 我们可以在网络服务中发送或返回字符吗?

I am new to webservices.
I have some services which accept char as input parameter e.g char langPref etc.
When I am trying to expose that service it is throwing an exception.
Can we send or return char in web services ?

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

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

发布评论

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

评论(1

丑疤怪 2024-12-13 06:09:22

尝试设置 @Produces("text/plain") 并返回一个字符串(从您的字符转换)

同样,@Consumes 应该对输入执行相同的技巧。

(话虽如此,您可能应该更多地强调有效负载。仅将字符作为输入/输出就表明您的资源设计存在缺陷)

Try to set an @Produces("text/plain") and return a String (cast from your char)

Likewise, an @Consumes should do the same trick for input.

(Having said that, you should probably emphasize the payload more. Just having chars as input/output is an indicator that your resource design is flawed)

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