All Questions
Tagged with google-app-engine java
8,966 questions
-1
votes
1
answer
51
views
Google AppEngine Error "The API call search.IndexDocument() required more quota than is available"
A few hours ago, indexing documents on AppEngine search started failing. Been working for years.
The following error occurs when saving a single document:
Caused by: com.google.appengine.api.search....
0
votes
0
answers
136
views
google cloud datastore emulator fails to start
Up until now, I was using the following command for testing a GAE application on my local dev env:
e:
cd E:\myProj\myWebApp
"E:\Google\Cloud SDK\google-cloud-sdk\bin\java_dev_appserver.cmd" -...
0
votes
1
answer
90
views
appengine-maven-plugin:2.8.1:deploy failing because it (incorrectly) believes the Java App Engine Components are not installed
Error is
[INFO] --- appengine-maven-plugin:2.8.1:deploy (default-cli) @ licence-server ---
[INFO] Staging the application to: c:\Source\wylas\wylas-licence-server\server\licence-server\target\...
0
votes
0
answers
22
views
Google AppEngine Custom Runtime Java + Maven Project
As per the below Google document, I am trying to use the Custom Runtime for using Java & maven projects. Below is the dockerfile I am using it for deploying my code with custom runtime and I got ...
1
vote
0
answers
43
views
How to fix thread issue with Dataflow job from GAE standard environment?
I want to use Dataflow, from a Google App Engine application (in a Standard environment), in java 21.
But I get the following error :
java.lang.RuntimeException: Error while staging packages
at ...
0
votes
0
answers
86
views
Updating appengine-web.xml to app.yaml file
I have a GAE application in Java 21 and updated the app.yaml file from the appengine-web.xml file. I am using web.xml for the servlets, and all related files like cron.xml, datastore-indexing.xml, ...
1
vote
0
answers
44
views
migrate appengine runtime from java 8 to 11
I am trying to migrate my Java Spring MVC code from Java 1.8 to Java 11 runtime version. This code we deployed in Google AppEngine Flex environment and I need to upgrade the runtime due to recent ...
0
votes
0
answers
106
views
java 8 end of support on App Engine flexible environment
I'm using Eclipse to deploy Java applications to the Google App Engine Flexible Environment. Now I must upgrade the code to Java version > 8. The following warning is prompted:
"Java 8 and ...
0
votes
0
answers
17
views
Java flexible app engine random cross origin failures
We have a google cloud app engine java instance and we are connecting to it from a web site via rest API. We have agents in South Africa and America. It seems that sometimes it has intermittent issues ...
-1
votes
1
answer
54
views
appengine-maven-plugin execution erroring out because Dockerfile not found
I am trying to deploy a java 11 application to google cloud app engine flex environment. Following is my app.yaml file:
runtime: java11
env: flex
handlers:
- url: /.*
script: this field is required, ...
1
vote
1
answer
30
views
Which GAE SDK first supported JDK 8?
Which is the first version of the (legacy) App Engine Java SDK that supports Java 8 and doesn't throw:
Caused by: java.lang.IllegalAccessException: Class com.google.apphosting.utils.clearcast....
-2
votes
1
answer
82
views
What is the Correct Approach for Uploading Files to Google App Engine Blobstore Without a Browser? [closed]
I'm working on a file upload feature in a Java web application running on Google App Engine (GAE). The application uses the Blobstore API for handling file uploads. However, when trying to upload a ...
1
vote
1
answer
41
views
Any way to deploy NodeJS app that uses Java to Google App Engine?
https://www.npmjs.com/package/xsd-schema-validator We're using this package, and it uses Java under the hood. Is there any way to deploy this app to App Engine? I'm assuming we'll have to switch from ...
0
votes
1
answer
89
views
Migrating Google App Engine - Eclipse Java 8
Google App Engine no longer supports Java 8. I am using Eclipse and used it in combination with the Goolge App Engine tools. Testing and deploying was very simple. I am looking for a method how I can ...
3
votes
0
answers
174
views
Spring security CORS configuration not working after deploying to App Engine
After configuring the CORS settings within my Spring Boot application to only permit requests coming from my website, I encountered an unexpected behavior when deploying the application on App Engine. ...