4

当我返回一个泛型时,端点 api 文件似乎消失了。示例代码已粘贴。

@ApiMethod
public RestResponse<Container> testGeneric() {
    Container container = new Container();

    container.testLong =  (long)4345;
    container.testDate = new Date();
    container.testString = "sathya";
    container.testDouble = 123.98;
    container.testInt = 123;

    RestResponse<Container> response = new RestResponse<Container>();
    response.t = container;

    return response;        
}

这是端点中的错误吗?根本不允许这样的事情吗?

问候, 沙迪亚

4

1 回答 1

3

我不认为这是一个错误,但它只是不被支持,就像你不能String从你的端点返回一个表单一样......

为了检查问题所在,如果您使用的是 Google Plugin for Eclipse,您可以查看下面的错误日志Window -> Show View -> Error Log以获取更多信息。

于 2013-04-11T10:41:16.777 回答