Questions tagged [app-engine-modules]

App Engine Modules is a feature that lets developers factor large applications into logical components that can share stateful services and communicate in a secure fashion.

App Engine Modules (or just "Modules" hereafter) let developers factor large applications into logical components that can share stateful services and communicate in a secure fashion. A deployed module behaves like a microservice. By using multiple modules you can deploy your app as a set of microservices, which is a popular design pattern.

18 questions
0
votes
1 answer

Converting App Engine frontend versions to modules

I've slightly "abused" the front-end "version" concept in App Engine (java), to implement modules before they were introduced. I have a configuration consisting of: module1-dot-myapp.appspot.com, module2-dot-myapp.appspot.com,…
DannyA
  • 1,571
  • 2
  • 17
  • 28
0
votes
1 answer

App Engine Modules Project using maven and Java

I want to create an App Engine Modules project using maven in Java basically for frontend and backend instance. For that I don't have any idea of module project structure as well as archetype of the module app engine project.
0
votes
1 answer

Appengine modules dispatch.xml routing with custom domain

I have someone got appengine modules working. i have two modules, app and auth. i have a custom domain say domain.com, i want to route app.domain.com to app module, and auth.domain.com to auth modules, following is my dispatch.xml file,
1
2