`
lijingzhi
  • 浏览: 43214 次
  • 性别: Icon_minigender_1
  • 来自: 珠海
社区版块
存档分类
最新评论

20130515-Grails In Action-3、建模(01小节)

 
阅读更多

内容简介

  • 什么事GORM,以及GORM怎么工作
  • 定义领域模型
  • 怎么让模型工作,如save、update
  • 验证和约束
  • 领域类的关系(1:1,1:m,m:n)

建立domain对象,增加属性,以及集成测试

1、创建项目

grails create-app hubbub

2、创建第一个domain对象

grails create-domain-class com.grailsinaction.User

3、给User对象添加必要的属性

 1 package com.grailsinaction
 2 
 3 class User {
 4     
 5     String userId
 6     String password
 7     String homepage
 8     Date dateCreated
 9 
10     static constraints = {
11     }
12 }

4、对User对象进行集成测试

grails create-integration-test com.grailsinaction.UserIntegration

5、增加测试代码

 1 package com.grailsinaction
 2 
 3 import static org.junit.Assert.*
 4 import org.junit.*
 5 
 6 class UserIntegrationTests {
 7 
 8     @Before
 9     void setUp() {
10         // Setup logic here
11     }
12 
13     @After
14     void tearDown() {
15         // Tear down logic here
16     }
17 
18     @Test
19     void testFirstSaveEver() {
20         def user = new User(userId: 'joe', password: 'secret', homepage: 'http://www.grailsinaction.com')
21         assertNotNull user.save()
22         assertNotNull user.id
23         def foundUser = User.get(user.id)
24         assertEquals 'joe', foundUser.userId
25     }
26 }

6、运行集成测试

grails test-app -integration

7、测试结果

| Running 1 integration test... 1 of 1
| Completed 1 integration test, 0 failed in 2218ms
| Tests PASSED - view reports in E:\example\grails\hubbub_03\target\test-reports

8、User对象保存和更新测试

在com.grailsinaction.UserIntegration中增加测试代码

 1     @Test
 2     void testSaveAndUpdate() {
 3         def user = new User(userId: 'joe', password: 'secret', homepage: 'http://www.grailsinaction.com')
 4         assertNotNull user.save()
 5         def foundUser = User.get(user.id)
 6         foundUser.password = 'sesame'
 7         foundUser.save()
 8         def editedUser = User.get(user.id)
 9         assertEquals 'sesame', editedUser.password
10     }

9、再运行、查看测试结果

| Running 2 integration tests... 1 of 2
| Running 2 integration tests... 2 of 2
| Completed 2 integration tests, 0 failed in 2562ms
| Tests PASSED - view reports in E:\example\grails\hubbub_03\target\test-reports

10、User对象保存、再删除测试

1     @Test
2     void testSaveThenDelete() {
3         def user = new User(userId: 'joe', password: 'secret', homepage: 'http://www.grailsinaction.com')
4         assertNotNull user.save()
5         def foundUser = User.get(user.id)
6         foundUser.delete()
7         assertFalse User.exists(foundUser.id)
8     }

分享到:
评论

相关推荐

    groovy-grails-tool-suite-3.6.4.RELEASE-e4.4.2-win32-x86_64.part1

    groovy-grails-tool-suite-3.6.4.RELEASE-e4.4.2-win32-x86_64.part1 共两个压缩包,解压后将扩展名.zip.bak改为.zip再次解压。

    groovy-grails-tool-suite-3.6.4.RELEASE-e4.4.2-win32-x86_64.part2

    groovy-grails-tool-suite-3.6.4.RELEASE-e4.4.2-win32-x86_64.part2 共两个包,解压后需要将扩展名.zip.bak改名为.zip重新解压。 http://dist.springsource.com/release/STS/3.8.1.RELEASE/dist/ e4.6/spring-tool-...

    Getting-Started-with-Grails-Chinese

    3. **Grails 命令行工具**:介绍 Grails 提供的各种命令,如运行、测试、打包等,以及它们在开发过程中的作用。 4. **MVC 架构**:解释 MVC 模式的组件(模型、视图、控制器)及其在 Grails 中的实现,包括 GORM...

    elasticsearch-grails-plugin, 恢复的ElasticSearch grails插件.zip

    elasticsearch-grails-plugin, 恢复的ElasticSearch grails插件 Elasticsearch插件插件这个项目是一个基于Elasticsearch的插件,这个项目是基于的人完成的伟大工作的。你为什么想要为原来的Elasticsearch插件提供...

    Getting-Started-with-Grails-Chinese.rar_Getting Started_grails

    3. **MVC架构**:Grails的MVC模式使得开发逻辑清晰,控制器处理用户请求,视图负责渲染输出,模型则封装业务逻辑和数据。 4. **GSP(Grails Server Pages)**:这是Grails的视图技术,类似JSP,但更简洁,支持...

    Grails in Action - Presentation

    ### Grails in Action – 演讲稿概览 #### Guillaume Laforge — Groovy项目经理 Guillaume Laforge 是一位在Groovy与Grails领域享有盛誉的技术专家,他在多个重要角色中扮演着关键角色: - **Groovy项目经理**:...

    grails in action 2009

    《Grails in Action 2009》是针对Groovy和Grails框架的一本详尽教程,适合希望深入了解这两种技术的开发者。Groovy是一种简洁、动态的Java平台上的编程语言,而Grails则是一个基于Groovy的开源Web应用框架,它以简化...

    idea-grails-toolls整包jar资源

    ant-1.9.4jarant-antlr-1.9.4.jarant-junit-1.9.4jar ant-launcher-1.9.4.jar bsf-2.4.0.jar commons-cli-1.2jar commons-logging-1.2.jar gpars-1.2.1.jar groovy-2.4.5jar groovy-ant-2.4.5.jar ...

    wsdl2java源码-grails-cxf-grails-3:grails-cxf-grails-3

    wsdl2java源码 请注意,当前的 3.x 版本使用 cxf 3.0.4 并且需要 WSS4J ...grails-app\endpoints** 和 grails-app\services** 目录中自动装配配置的类 端点创建脚本 create-endpoint 和 create-endpoin

    Grails入门指南 -- 针对grails1.0.4更新

    ### Grails入门指南知识点 #### 一、Grails框架简介 - **背景**: Grails是一个基于Groovy语言的开源Web应用框架,适用于Java平台。它旨在简化开发过程,提高开发效率,尤其受到那些希望保留Java环境同时寻求更高效...

    grails in action

    《Grails in Action》是一本专注于Grails框架的实战型图书,由Manning出版社于2009年出版,ISBN号为1933988932。Grails是一种基于Groovy语言的开源Web应用框架,它以其高效、灵活和强大的特性深受Java开发者喜爱。这...

    geb-grails-0.5-sources.jar

    实测可用

    geb-grails-0.5.jar

    实测可用

    geb-grails-0.4.jar

    实测可用

    gcontracts-grails-1.2.2.jar

    实测可用

Global site tag (gtag.js) - Google Analytics