Failed to deploy java project in Google App Engine

I created one project in Google App Engine, and I cannot deploy the project with the project id: "id of my project"

Here are the details of the problem:

The application identifier you selected, "id of my project", does not exist. Go to http://cloud.google.com/console to view existing application identifiers or create a new application identifier.

Unable to update application: Sending error in URL: https://appengine.google.com/api/appversion/create?app_id= "my project id" & version = 1 & 404 Not Found This application does not exist (project_id = u'my project id). To create the App Engine application in this project, run "gcloud beta app create" in the console.

Is anyone facing this issue?

Old projects work fine, and I can deploy these projects. The problem is only in newly created projects.

+7
java google-app-engine google-cloud-platform
source share
2 answers

You should do the same as the error message that the gcloud app create command (beta is no longer needed) from the terminal should execute.

App Engine is no longer automatically initialized for newly created projects, so you must run this command in a new project before deploying the App Engine application for the first time.

+12
source share

For my new eclipse project, it worked to create a new project at https://console.cloud.google.com/ and wait 24 hours. In the "Activity" after the first listing of a new project 15.12.16 7:22 CreateProject following list < me@myhost > hat google.appengine.v1.Applications.CreateApplication für <myproject> ausgeführt 17. Dezember 2016 um 07:22:06 UTC+1 or more appeared automatically exactly after 24 hours. Then I was able to successfully deploy from eclipse.

For another new Adams project, the offer worked fine: open the "Google Cloud SDK Shell" as administrator, "cd" for the eclise workspace and my project and run gcloud beta app create , choosing my preferred region and deploy my new project from eclipse.

0
source share

All Articles