Looks like Cloud CLI provides a dev server if using the legacy bundled services (App Engine API JAR)? https://cloud.google.com/appengine/docs/standard/java-gen2/services/access If you are using the legacy bundled services, the second-generation Java runtimes provide the Jetty web-serving framework. https://cloud.google.com/appengine/migration-center/standard/migrate-to-second-gen/java-differences#framework_flexibility The Google Cloud CLI for Java includes a local development server for testing your application on your computer. The local development server emulates the App Engine Java runtime environment and all of its services, including Datastore. https://cloud.google.com/appengine/docs/standard/tools/using-local-server?tab=java What do you think ?
Re. static files: in my setup appengine:deploy at base directory server project deploys SNAPSHOT.war. Static files in \src\main\webapp end up in its root directory. This: https://stackoverflow.com/questions/71673962/while-running-as-a-jar-application-not-able-to-access-static-files-in-springboo says in the case of a JAR-file, src/main/webapp has no special meaning and goes on about jar directories that work with Springboot. -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/google-web-toolkit/3efb5967-695f-4939-9986-2a35353f9606n%40googlegroups.com.
