尝试将 Java 应用程序推送到 Cloud Foundry 时收到 404 Not Found 错误消息

Getting 404 Not Found error message when trying to push a Java application to Cloud Foundry

我一直在部署一个 Java 应用程序并尝试使用 PaaS Cloud Foundry 将其推送到云端,但当我尝试推送我的应用程序时,其中一条路径似乎无法访问应用。 此外,我在 Cloud Foundry 部分使用 Anynines (https://www.anynines.com/)(我检查过,这不是身份验证问题)。 打开详细模式时我得到的确切错误日志是:

REQUEST: [2020-07-27T14:48:16+02:00]
GET /v2/routes/reserved/domain/21d14133-2acd-462e-84ff-2a0d56bbd9ae?host=logicielgestionformations HTTP/1.1
Host: api.de.a9s.eu
Accept: application/json
Authorization: [PRIVATE DATA HIDDEN]
User-Agent: cf/6.51.0+2acd15650.2020-04-07 (go1.13.8; amd64 windows)

RESPONSE: [2020-07-27T14:48:16+02:00]
HTTP/1.1 404 Not Found
Connection: keep-alive
Content-Length: 86
Content-Type: application/json;charset=utf-8
Date: Mon, 27 Jul 2020 12:48:15 GMT
Keep-Alive: timeout=20
Server: nginx
X-Content-Type-Options: nosniff
X-Vcap-Request-Id: 5eb75dbe-96ec-40df-61ec-ac37b158d47c::5a0552f3-22cb-4c76-b234-c72b29010a1e
{
  "code": 10000,
  "description": "Unknown request",
  "error_code": "CF-NotFound"
}

我一直在到处寻找我的问题的答案,但似乎没有人和我有相同的答案... 如果你能帮助我,那你就太好了:)

编辑:

我找到问题了,我只需要删除 manifest.yml 开头的“-”,因为它写在这里:https://docs.cloudfoundry.org/devguide/deploy-apps/manifest-attributes.html注意:如果您的应用程序名称以破折号 (-) 开头,则您无法使用 cf CLI 与该应用程序交互。这是因为 cf CLI 将破折号解释为标志).

现在我还有另一个问题要解决:看来我必须选择一个 buildpack...

Error staging application: An app was not successfully detected by any available buildpack

此致, 黛博拉·贾贝斯

我找到问题了,我只需要删除 manifest.yml 开头的“-”,因为它写在这里:https://docs.cloudfoundry.org/devguide/deploy-apps/manifest-attributes.html注意:如果您的应用程序名称以破折号 (-) 开头,则您无法使用 cf CLI 与该应用程序交互。这是因为 cf CLI 将破折号解释为标志).