grails 与 extjs 整合

网上一个例子
http://dev.puchbauer.com/extui/extUi

下载地址

http://dev.puchbauer.com/extui/war/extui-0.1.war

同时上面也是grails的一个未发行的一个插件 的演示版本

http://plugins.grails.org/grails-ext-ui/


在grails的controller中获得json的方法是
import grails.converters.*

def list = {
def listResult = [ total: Book.count(), items: Book.list(params)]
render listResult as JSON
}

如果对domain中的属性改名称用

def treeNodes =  Book.list().collect { book -> return [text: book.title, cls: 'file', leaf: true] }
下面是我收集到的相关资料

你可能感兴趣的:(json,ext,gwt,grails,groovy)