我们可以使用 JAX-RS 在 java web 服务中发送或返回 char
我是网络服务新手。 我有一些接受 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试设置 @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)