domain的属性类型设置为byte[]1.domain设置classLinkBean{..Stringp_w_picpathName//图片名称byte[]p_w_picpath//图片内容staticmapping={p_w_picpathtype:‘p_w_picpath‘//设置数据库类型}2.controller设置保存之前,先处理上传的文件名//setp_w_picpathfilenameCommonsMultipa..
分类:
其他好文 时间:
2014-10-10 16:04:14
阅读次数:
252
一、totalCount
最近在用grails开发项目,在createCriteria中使用group by的时候发现PagedResultList中的totalCount有问题。
查阅了很多官方的非官方的资料后,最终得出一条临时方便的解决办法:
int totalCount = Domain.executeQuery('select count(*) from
domain where...
分类:
其他好文 时间:
2014-09-20 16:35:39
阅读次数:
351
简介Spring XD(eXtreme Data,极限数据)是Pivotal的大数据产品。它结合了Spring Boot和Grails,组成Spring IO平台的执行部分。尽管Spring XD利用了大量现存的Spring项目,但它是一种运行时环境,而不是一个类库或者框架,它包含带有服务器的bin...
分类:
编程语言 时间:
2014-09-07 14:45:15
阅读次数:
448
实现级联更新效果有多种方式,现只介绍用jquery框架的ajax技术实现的方式,个人认为使用jquery的方式更好更灵活,因为它只负责传数据,如果用grails自带的异步更新,简单的还可以,如果是复杂一点的就比较难搞。下列代码无需考虑业务意义jquery的ajax实现:1.GSP中_form.gsp的..
分类:
其他好文 时间:
2014-08-18 18:53:03
阅读次数:
218
在grails中直接使用SQL语句进行查询,可以直接获取一个新连接,也可以使用默认的数据源查询代码:ApplicationContextctx=(ApplicationContext)ApplicationHolder.getApplication().getMainContext()
defdataSource=ctx.getBean(‘dataSource‘)
defsql=newSql(dataSource)
String..
分类:
数据库 时间:
2014-08-18 18:52:23
阅读次数:
507
def search = { ??????? if(!params.max) params.max = 10 ??????? if(!params.offset) params.offset = 0 ??????? def searchClosure =? { ??????????? if(params.categoryNa...
分类:
其他好文 时间:
2014-07-22 08:16:36
阅读次数:
271
一、什么是Grails?
Grails is an Open Source, full stack, web application framework for the JVM. It takes advantage of the Groovy programming language and convention over configuration to provide a producti...
分类:
其他好文 时间:
2014-07-19 23:18:40
阅读次数:
240