您
InputStream在类中包括了两个变量,这些变量被设置为的实例
OracleBlobInputStream,您的GSON提供程序无法实例化这些实例。您可能希望将图像内容存储为字节(或作为(URL编码的)字符串)。
public class ImageFileInfo implements Serializable { // Other class variables private byte[] thumbarray; private byte[] fullarray; // Constructors, Getters/Setters}ImageFile.setThumb(rs.getBytes("imagethumb"));ImageFile.setFull(rs.getBytes("imagefull"));
在侧面切线上,您似乎正在尝试返回JSON内容,但是您错误地将
Content-Typeas
text/html而不是指定为
application/json。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)