Grails备忘

1,基于Grails2.4.4版本,

2,最好的老师 http://www.kuqin.com/grails-doc-1.0/

3,输出sql语句,修改 项目路径\grails-app\conf\Config.groovy文件

    development {

        grails.logging.jul.usebridge = true

        dataSource{

            logSql = true

        }

    }

4,下拉列表

    Dict使用grails create-domain-class Dict 生成,value是要匹配的值,optionKey选项的值,此处填Dict的属性名,optionValue是选项内容,还填Dict的属性名,noSelection是空值

    <g:select name="status" from="${Dict.findAllByName("apk_status")}" value="${apkInstance.status}"

              optionKey="key" optionValue="word" noSelection="['':'------']" />

5,表单检查

    最小1910,最大当前

    birthday(min: new Date(10,0,0) ,max:  new Date() )

6,国际化

    messages_zh_CN.properties使用utf-8保存,就不必转码了,直接明文。create-app生成的默认是GBK编码。

相关推荐