[Grails] grails开发的娱乐项目上线

vottot 2010-09-10
新项目上线,邀请大家测试。
大家都开心:http://www.djdkx.com
分享开心,大家都开心。
akunamotata 2010-11-16
lauphai 2010-11-29
vottot 写道
新项目上线,邀请大家测试。
大家都开心:http://www.djdkx.com
分享开心,大家都开心。

OK,测试一下
brimstone 2010-12-17
org.springframework.web.util.NestedServletException: Request processing failed; nested exception is org.codehaus.groovy.grails.web.pages.exceptions.GroovyPagesException: Error processing GroovyPageView: could not inspect JDBC autocommit mode; nested exception is org.hibernate.exception.JDBCConnectionException: could not inspect JDBC autocommit mode
出异常啦
wenxiang_tune 2011-09-17
呵呵,网站很简单,楼主开源了吧。。。。我刚好想学习groovy on grails
沙舟狼客 2011-09-27
不错,有点糗事百科的味道
开源了吧 好人
violetluna 2011-11-22
www.xiaoyuantong.me
也是基于grails1.3.7开发的,IDE是STS2.6
iloong 2012-09-15
开源了吧,我想看看啊啊
Jcat 2013-01-23
vottot 写道
新项目上线,邀请大家测试。
大家都开心:http://www.djdkx.com
分享开心,大家都开心。


亲,分页要做个最大max的限制哦,不然遇到这种URL就麻烦咯
http://www.djdkx.com/re?max=40000&offset=0


something like this

    static int paginateMax(String max) {
        int re = 100
        if (max?.isInteger()) {
            re = Math.min(Integer.valueOf(max), 300)
        }
        return re
    }
Global site tag (gtag.js) - Google Analytics