我们无法使用 Google 云调试器调试我们的 Appengine Standard Java 11 项目
The debugger could not find a debug target for the application name (project-test).
考虑到调试器默认启用;App Engine 标准环境中无需配置,如本文档所述
那么可能是什么问题以及如何启用 GCloud 调试器?
我们无法使用 Google 云调试器调试我们的 Appengine Standard Java 11 项目
The debugger could not find a debug target for the application name (project-test).
考虑到调试器默认启用;App Engine 标准环境中无需配置,如本文档所述
那么可能是什么问题以及如何启用 GCloud 调试器?
根据有关发出 HTTP 请求的 App Engine 文档,如果您使用 URL Fetch,它将导致对云客户端库(包括适用于 Java 的 Google Cloud Debugger Client)的请求失败。
你在使用appengine-web.xml
文件吗?
如果有,是否包括以下内容?
<url-stream-handler>urlfetch</url-stream-handler>
如果是这种情况,您可以尝试不使用该行吗?