This page contains the following errors:
error on line 1 at column 1: Document is empty
Below is a rendering of the page up to the first error.
这种情况是服务器处理返回了,但是返回的格式有问题,这里提示Document为空,后台是返回字符串: success
而service方法中:
@Produces("text/xml")
改为:
@Produces("application/json")
error on line 1 at column 1: Document is empty
Below is a rendering of the page up to the first error.
这种情况是服务器处理返回了,但是返回的格式有问题,这里提示Document为空,后台是返回字符串: success
而service方法中:
@Produces("text/xml")
改为:
@Produces("application/json")
即可。
-----------------
有时候返回的不对,
即,正常返回的过程中,有输出。
也会出现这样的情况
本文介绍了一种常见的服务器返回Document为空的情况及解决方法。通过调整返回格式为JSON而非XML,可以有效解决此问题。
1万+

被折叠的 条评论
为什么被折叠?



