NEO

蜀道难,难于上青天!

导航

2013年5月17日

摘要: 1、Criteria(条件查询)Criteria可以通过createCriteria 或者 withCriteria 方法来使用 1 def user = User.findByUserId(params.user) 2 def entries = Post.createCriteria().list { 3 and { 4 eq('user', user) 5 between('created', new Date()-1, new Date()) 6 tags { 7 ... 阅读全文

posted @ 2013-05-17 16:30 页面载入出错 阅读(241) 评论(0) 推荐(0) 编辑

摘要: 上一节介绍了一个基本的动态查询器是怎么工作的,grails还有很多的动态查询器,我们来建一个测试来测试一下其他查询器的工作状况1、创建一个集成测试类grails create-integration-test com.grailsinaction.QueryIntegration创建一个测试方法testBasicDynamicFinders 1 package com.grailsinaction 2 3 import static org.junit.Assert.* 4 import org.junit.* 5 6 class QueryIntegrationTests { 7 8 ... 阅读全文

posted @ 2013-05-17 10:50 页面载入出错 阅读(252) 评论(0) 推荐(0) 编辑