如何在Intellij IDEA 12中部署到Google App Engine

问题描述 投票:2回答:2

我需要将Hello-World应用程序部署到Google App Engine。 我想通过IDEA做到这一点,因为我有Ultimate。 但是我找不到怎么做。 您能否逐步解释我该怎么做?

我从Idea模板创建了项目,添加了appengine-web.xml,指定了注册的应用程序名称。 尚未创建任何工件/ WAR。

我没有菜单项“上传App Engine应用程序”,如http://www.jetbrains.com/idea/webhelp/uploading-application-to-google-app-engine.html所示

我的菜单->“工具”是:

google-app-engine gwt intellij-idea
2个回答
4
投票

确保为应用程序正确配置了 Google App Engine 方面和SDK

然后,您应该获得此菜单:

上传


1
投票

部署到Google App Engine的最佳和最简便的方法是使用Maven插件。

<!-- The actual maven-gae-plugin. Type "mvn gae:run" to run project, "mvn gae:deploy"
     to upload to GAE. -->
<plugin>
   <groupId>net.kindleit</groupId>
   <artifactId>maven-gae-plugin</artifactId>
   <version>0.9.5</version>
</plugin>

如果您想这样做,那么我很乐意帮助您进行配置,并在此处提出后续问题。

© www.soinside.com 2019 - 2024. All rights reserved.