google app engine service unavailable

前端 未结 10 1902
萌比男神i
萌比男神i 2021-01-17 10:06

I\'m was following http://googcloudlabs.appspot.com/ tutorial to create new Google App Engine project. It throws me an error as per below when I try to run the from my local

10条回答
  •  臣服心动
    2021-01-17 10:40

    The solution working for me is to run appEngineServer from command line using Gradle, as comments in generated build.xml for endpoints module proposes. And gradle config includes option for Java 1.7 compatibility, so it's no reason to use Java 1.6 if You want 1.7:

    gradlew modulename:appengineRun

    Currently, the appengine gradle plugin's appengine devappserver launch doesn't interact well with Intellij/AndroidStudio's Gradle integration. As a temporary solution, please launch from the command line. ./gradlew modulename:appengineRun

提交回复
热议问题