Framework choices / recommendations for the Google App Engine

I want to develop a large web application in the Google App engine, but I don’t know what structure to use to get the MVC model. I prefer to use Spring MVC, but I read a few problems with GAE. Another option is to use django with python, but I never used it. What structure or option do you recommend? Are there other frameworks?

Hi

+5
source share
4 answers

You should check web2py - this is a full-fledged structure of Python MVC, which is very easy to configure, learn and use, it was designed to work in the Google App Engine out of the box, and there is the entire section in the online book devoted to GAE (there are others in the whole The book discusses several specific considerations when developing for GAE). There's even a "Deploy to Google App Engine" button in a web2py-based web environment (see Demo IDE and GAE Deployment Interface ).

Your Web2py GAE applications will also be portable - you can deploy them on other platforms (for example, Linux VPS) without changing your code (although you can make some adjustments after you turn off GAE and no longer expose it to its limitations) .

- , .

+4

Stripes Google App Engine . , MVC-, , . Guide ( ) Sitemesh ( ). , , , http://code.google.com/p/memwords/.

+1

Django - , GAE .

Pycharm GAE.

0

Tornado, , - python, , .

0

All Articles