我们在Google App Engine(GAE)上运行了无状态后端Java应用程序。引擎接受字符串-A(json)并返回不同的字符串-B(json)。
Google Cloud Endpoints上的示例围绕创建实体 - 定义CloudEndpoint类。大多数示例似乎都与DataStore绑定 - 后端数据库。
在我们的例子中,数据不会保留,也没有主键。我们成功创建了一个实体 - 输入和输出字符串为两个字段。它工作,但resp有效负载也包含一个输入字符串的副本。
我们使用doPost方法使用标准servlet(req。字符串和不同的resp字符串)的解决方案。
对于我们的场景,任何建议都是CloudEndPoint必要和/或是否有一种简单的方法可以在Cloud Endpoint中执行此操作?
由于
答案 0 :(得分:1)
没有任何东西会迫使您使用数据存储区。如果您不需要它,请不要使用它。
您可以从一个Pojo转换为另一个Pojo,例如
public class Input {
public String inputValue;
}
public class Output {
public String outputValue;
}
@Api(name = "myApi", version = "v1")
public class MyApi {
@ApiMethod(name = "hello")
public Output hello(Input input) {
Output response = new Output();
response.resultValue = "Hello " + input.inputValue;
return response;
}
}
通过API资源管理器(对我而言http://localhost:8888/_ah/api/explorer)显示它会产生等效JSON对象的POST请求/响应:
POST http://localhost:8888/_ah/api/myApi/v1/hello
{
"inputValue": "Hans"
}
返回
200 OK
{
"resultValue": "Hello Hans"
}
端点的一大优点是,您可以编写简单的Java方法,如Output hello(Input input)
,并在自动生成的(Java)客户端代码中使用它们,而不会“看到”这些方法是通过HTTP调用的。
如果您弄清楚URL是什么,但是这不是预期用途,您可以通过常规http使用它们。
在app-engine中执行JSON方法的一种更通用的方法是使用像Jersey这样的JAX-RS实现。这样您就不必拥有_ah/api/vN/apiname/methodname
方法及其附带的限制(如异常情况下的特定错误响应)。
使用JAX-RS的代码可能看起来像
@Path("/whatEverILike")
@Produces(MediaType.APPLICATION_JSON)
@Consumes(MediaType.APPLICATION_JSON)
public class MyApi {
@POST
public Output hello(Input input) {
Output response = new Output();
response.resultValue = "Hello " + input.inputValue;
return response;
}
}
但是设置这样的项目有点困难,因为你需要很多依赖项。例如,对于Jersey,您可能希望以下2包括几个传递依赖:
org.glassfish.jersey.containers:jersey-container-servlet-core:2.22
org.glassfish.jersey.media:jersey-media-json-jackson:2.22
展开
aopalliance-repackaged-2.4.0-b31.jar jackson-core-2.5.4.jar javassist-3.18.1-GA.jar jersey-client-2.22.jar jersey-media-jaxb-2.22.jar
hk2-api-2.4.0-b31.jar jackson-databind-2.5.4.jar javax.annotation-api-1.2.jar jersey-common-2.22.jar jersey-media-json-jackson-2.22.jar
hk2-locator-2.4.0-b31.jar jackson-jaxrs-base-2.5.4.jar javax.inject-1.jar jersey-container-servlet-core-2.22.jar jersey-server-2.22.jar
hk2-utils-2.4.0-b31.jar jackson-jaxrs-json-provider-2.5.4.jar javax.inject-2.4.0-b31.jar jersey-entity-filtering-2.22.jar osgi-resource-locator-1.0.1.jar
jackson-annotations-2.5.4.jar jackson-module-jaxb-annotations-2.5.4.jar javax.ws.rs-api-2.0.1.jar jersey-guava-2.22.jar validation-api-1.1.0.Final.jar