在 Cloud Endpoint Framework 中使用 IP 地址访问 App Engine localhost

Access App Engine localhost using IP address in Cloud Endpoint Framework

以前,我使用它访问 build.gradle 文件中 IPv4 地址上的 App Engine:

appengine {
    httpAddress = "0.0.0.0"
    httpPort = 8888
...
}

但升级到 Cloud Endpoint 插件后,此选项已删除。欢迎任何帮助。

如果您使用的是新版 app-gradle-plugin,您需要这样:

appengine {
  run {
    host = "0.0.0.0"
    port = 8080
  }
}

参见new plugin documentation