Re: [google-appengine] issue of migration from Java8 to Java 11 for app engine standard model

2019-11-27 Thread Han Ju Kim
Sorry for all, As far as I understand, "mvn package appengine:run" type is not allowed due to new wrapping structure of Java11. So I should do wrapper as describe above, now it successfully initiate my war fie. However many errors regarding google.appengine.api.datastore. :( On Friday, Novembe

Re: [google-appengine] issue of migration from Java8 to Java 11 for app engine standard model

2019-11-21 Thread Han Ju Kim
Hi Ludovic, The Java 11 page of App engine described the guide for running application locally as below, To run your application locally: 1. Package your application: mvn clean package 2. Start the server with your WAR file as an argument. For example, yo

Re: [google-appengine] issue of migration from Java8 to Java 11 for app engine standard model

2019-11-21 Thread 'Ludovic Champenois' via Google App Engine
Hi, AppEngine Java11 does not have support for the local appserver emulator, as any type of workload can be used (not a Jetty Servlet Server anymore). So for Java11, the DevAppServerRunner run action is not available (or produces this type of error). Only the deployment action is possible.

[google-appengine] issue of migration from Java8 to Java 11 for app engine standard model

2019-11-19 Thread Han Ju Kim
Hi I'm trying to migrate existing app engine standard model (JDK8) to Java11 according to the guide at Google cloud https://cloud.google.com/appengine/docs/standard/java11/java-differences There is no issue on compile, but we I try to run on local development server it generates this error. I'm