gwt 2.5 与 Jersey 1.17 和 RestyGWT 1.3
当我从客户端调用它时出现错误:Resposne 不是有效的 JASON 文档
它适用于整数,但为什么不适用于字符串???
我的资源:
@Path("/files")
public class FileResource {
@GET
@Produces(MediaType.APPLICATION_JSON)
@Path("/backup")
public String getBackup() {
return new String("asd");
}
和 RestService 接口:
public interface FileRestService extends RestService {
@GET
@Path("/backup")
void getBackup(MethodCallback<String> callback);
/**
* Utility class to get the instance of the Rest Service
*/
public static final class Util {
private static FileRestService instance;
public static final FileRestService get() {
if (instance == null) {
instance = GWT.create(FileRestService.class);
((RestServiceProxy) instance).setResource(new Resource(GWT
.getHostPageBaseURL() + "rest/files"));
}
return instance;
}
private Util() {
}
}
}