I have 3 java modules using Google Appengine Standard:
The first one module uses Java 7 with Servlet 2.5 + web.xml + Spring 4
The second module uses Java 8 with Servlet 3.1 without web.xml + Spring 5 using WebApplicationInitializer.
The third module is just to frontend files (HTML,CSS).
I have a dispatch.yaml that contains route for each module.
If I run only java8 module using:
mvn appengine:run OR /usr/lib/google-cloud-sdk/bin/java_dev_appserver.sh,
It is ok, the modules run.
If I use: dev_appserver.py theJava8Module
, happens the follow problem:
google.appengine.tools.devappserver2.errors.AppConfigNotFoundError: The "target/theJava8Module/WEB-INF" subdirectory exists but is missing web.xml
Before I had this java8 module, I used to run with this command:
dev_appserver.py --max_module_instances=1 frontendmodule/frontendmodule.yaml dispatch/dispatch.yaml java7Module/target/java7Module --dev_appserver_log_level=debug
When I use this command, it is ok, the 2 modules run and I can use the application and dispatch rules.
My question is, is there any way to run more than one module and using dispatch rules? Can I user dev_appserver.py (python) to run java8 application that does not have web.xml? Or Can I user mvn:appengine to run multiple modules and use dispatch.xml or dispatch.yaml?
Important: Could I run separete modules using mvn:appengine and dev_appserver, the problem is that the ports will be different, so the dispatch rules won't work.
Example:
dev_appserver.py --max_module_instances=1 frontendmodule/frontendmodule.yaml dispatch/dispatch.yaml java7Module/target/java7Module --dev_appserver_log_level=debug (port 8080)
mvn appengine:run java8module (port 9090)