2015-04-02

grails for the first time

notes from 2012

http://grails.org/Installation

http://grails.org/Quick+Start


timer event scheduler
http://stackoverflow.com/questions/3812727/how-to-run-a-scheduler-timer-on-server-startup-in-grails
http://grails.org/plugin/quartz
http://www.quartz-scheduler.org/overview/features

An interesting data modelling refactoring that I was unaware of :
"You learned that a M:M relationship is actually just two 1:M relationships with a third class that you haven’t identified yet."
- from http://www.infoq.com/minibooks/grails-getting-started

ORM is actually Hibernate underneath.

There was some weirdness around enabling keyboard shortcuts in STS
http://superuser.com/questions/345667/eclipse-ignores-custom-keyboard-shortcut

"... install the templates early in the development process and customize them before you generate a bunch of code."

authentication plugins
http://grails.org/plugin/authentication
http://grails.org/plugin/openid
http://grails.org/plugin/spring-security-facebook

groovy's functional list features
filter == findAll, map == collect, fold == inject

No comments:

Post a Comment