Porting a Grails application to GAE

前端 未结 3 1077
遥遥无期
遥遥无期 2021-02-06 17:16

I currently have a Grails application I\'m evaluating to port to Google App Engine and I\'d like to know experiences regarding:

  1. Acegi security: the application rel
3条回答
  •  再見小時候
    2021-02-06 18:17

    You may also be interested in Gaelyk (http://gaelyk.appspot.com/) Gaelyk is a lightweight wrapper which enables you to deploy applications written in Groovy to the App Engine.

    Gaelyk offers a lot of the advantages of Grails including:

    • standards for Views, Controllers
    • flexible URL routing
    • plugin system
    • It has simple wrappers for the App Engine (including datastore access and coercion to POJO/POGOs, email, memcache, Jabber & more)

    (although it doesn't include internationalisation, CRUD scaffolding or a HQL type query wrapper)

    As it is more lightweight it doesn't have the performance issues on App Engine that Grails does and now that you can reserve instances http://code.google.com/appengine/docs/adminconsole/instances.html#Always_On it is possible to remove the startup time problems!

提交回复
热议问题