Earlier we used Spring MVC with Spring Roo for all us projects.
We are really excited to work with Grails framework.
Let mi introduce same of features in Grails:
Rapid development
We don´t often restart Tomcat. After changes in controller classes, gsp pages or config classes is project automatically reloaded. When you add or change same bean in Spring context, it automatically reload too. It is very comfortable behaviour.URL mapping
For URL mapping Grails use simple mapping file:"/clanky"(controller:'article', action:'all') "/clanky/$url"(controller:'article', action:'show') "/klub"(controller:'klub', action:'about') "/fotogalerie"(controller:'gallery', action:'all') "/fotogalerie/$url"(controller:'gallery', action:'show')You only determine which controller and action is conjunction with url. When you use Grails link tag then the url is automatically compile in all your HTML links. It is grait!
No comments:
Post a Comment