Google App Engine在IntelliJ中生成Endpoint类

时间:2013-10-16 04:05:18

标签: google-app-engine intellij-idea google-cloud-endpoints

我知道你可以在Eclipse中生成Endpoint类

https://developers.google.com/eclipse/docs/endpoints-addentities

在IntelliJ中有类似的方法,或者你必须手动完成,如果是这样的话?

1 个答案:

答案 0 :(得分:2)

引用this project的maven构建文件(pom.xml),看看它是否安装了appengine插件。这使得您无需将UI插件安装到Android Studio或Eclipse中,但您可以通过maven依赖项获得相同的AppEngine SDK功能。

您还需要在该项目中定义的nbactions.xml文件以及src / main / webapp / WEB-INF / web.xml和src / main / webapp / WEB-INF / appengine-web.xml文件定义类似于github项目。配置这些文件之后,Cloud Endpoints应该可以运行,您应该能够运行'mvn install appengine:devserver'或从Eclipse或IntelliJ UI调用相同的目标。

成功部署后,http://localhost:8080/_ah/api/explorer将转到API资源管理器。