grails资源

1,网上资源

http://groups.google.com.hk/group/grailsunion

http://grails.group.javaeye.com/

2,grails知名应用

grailsflow

grailsblog

http://www.grails.org/OpenSource+Projects

http://code.google.com/p/grailsbloghttp://www.grailsblog.com

http://code.google.com/p/grails-domain-uml/

http://code.google.com/p/grails-petstore

http://code.google.com/p/ket-framework/

http://code.google.com/p/grailsmda

http://code.google.com/p/6footplus/

http://code.google.com/p/grum/

http://code.google.com/p/groovyblogs

http://code.google.com/p/simpejob

http://code.google.com/p/biz-portal

http://code.google.com/p/grailsportal

http://svn.codehaus.org/grails/trunk/grails-samples/grails.org/

http://www.grailsdeveloper.com/blog/2008/09/a-lot-of-grails-sample-applications-grails-open-source-projects/

3,工具

grails文档里说没有自带功能测试,但支持CanooWebTest

4,网站

http://www.grailsjobs.com/

4,好文章

ibm网站有一系列MasteringGrails文章,非常棒。主题有TestingyourGrailsapplication,Grailsintheenterprise,AsynchronousGrailswithJSONandAjax等十来个。

http://www.ibm.com/developerworks/views/java/libraryview.jsp?search_by=mastering+grails

http://www.ibm.com/developerworks/java/library/j-grails10148/index.html

SiteMesh学习入门

GRAILS对于我这样的所谓老Java程序员来说,上手还是挺容易的,所谓最难掌握的闭包概念,我认为可以简单的认为是以前的匿名类+委托(当然还有很多其他的好处)。GRAILS给控制器划分了一个Service层,在业务逻辑重用上,比RAILS做的更好。GRAILS相对没有太多的单复数规约,相对RAILS的“约定”要简单很多。GRAILS目前没有RAILS那么强大的路由功能,不过反而可以带来的相对简单。

言归正传,其实我这里不是准备比较两个框架的优劣,而是想分享一下GRAILS多对多查询的一些经验。关于GRAILS本身还有GROOVY,我建议大家可以看看这里。

GRAILS使用Hibernate作为ORM的基础。方便的同时也带来一些复杂,比如多对多查询。假设我有两个领域模型(其实就是rails里面的model,不过Java的东西嘛,总是比较学术化)

classProduct{

statichasMany=[scenario:Scenario]

staticbelongsTo=Scenario

}

classScenario{

statichasMany=[product:Product]

}

如果我要查询Product中,所属scenario在scenario表中的id为1,可以通过如下的方法查询:

defscenario=Scenario.get(1)

returnscenario?Product.findAll("fromProductpwhere:scenarioinelements(p.scenario)",[scenario:scenario]):[]

来源:http://www.leesoft.com.cn/2009/04/12/grails%E5%A4%9A%E5%AF%B9%E5%A4%9A%E7%9A%84%E6%9F%A5%E8%AF%A2%E6%9E%84%E9%80%A0/

http://rainboyan.com/post/use_groovy_tables_to_doc.html

可以通过Scriptom(现在还是beta版)嵌入vbs、js脚本(包括使用WSH,FSO)或者调用InternetExplorer、MediaPlayer、Word和Excel等windows组件

Groller项目启动http://rainboyan.com/post/groller_was_launched.html

http://code.google.com/p/rainboyan/source/browse/groller

http://www.blogjava.net/emu/archive/2005/05/18/4784.html里面有讲到8皇后

相关推荐