我想尝试使用Google App Engine的Google Eclipse插件,但是我被困在教程中......
我想从Google教程启动Web应用程序,但是当我点击“运行AS> Web应用程序”时,我只在控制台上看到此消息:
Usage: <dev-appserver> [options] <war directory>
Options:
--help, -h Show this help message and exit.
--server=SERVER The server to use to determine the latest
-s SERVER SDK version.
--address=ADDRESS The address of the interface on the local machine
-a ADDRESS to bind to (or 0.0.0.0 for all interfaces).
--port=PORT The port number to bind to on the local machine.
-p PORT
--sdk_root=root Overrides where the SDK is located.
--disable_update_check Disable the check for newer SDK versions.
有什么问题?似乎启动服务器的命令是错误的,但我没有编辑它...有人可以帮忙吗?
答案 0 :(得分:76)
这是因为您的启动配置文件(位置:WORKSPACE / .metadata / .plugins / org.eclipse.debug.core / .launches)已损坏。解决此问题所需要做的就是删除现有的启动配置(在运行&gt;运行配置中)
答案 1 :(得分:1)
检查Eclipse Project或GAE SDK是否在路径中有空格。
答案 2 :(得分:1)
在项目名称中使用空格时会出现问题。
“运行配置&gt;参数&gt;程序参数”,在项目路径中插入引号。即:
--port=8888 --disable_update_check {PATH}\My Project
要:
--port=8888 --disable_update_check "{PATH}\My Project"
我是从this thread
找到的非常感谢
答案 3 :(得分:0)
我无法理解您的整个问题,但请尝试制作gae http://www.vogella.de/articles/GoogleAppEngineJava/article.html
的此链接程序答案 4 :(得分:0)
有关已经说过的内容的一些其他信息。
您需要安装“m2eclipse”,否则您将无法使用“run as”选项。