码迷,mamicode.com
首页 > 其他好文 > 详细

grails-domain-id 无生成策略,由程序控制

时间:2015-01-19 10:48:54      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

一 domain class 中标示

class Menu implements Comparable<Menu>{
   String id;
   String name;  
}
static constraints = {
    //1
    id bindable : true
    name nullable:true
}
static mapping = {
    //2
    id column:‘MENU_ID‘ , generator:‘assigned‘
    name column:‘MENU_NAME‘ 
}

 

二 controller 中调用

// 1
@Transactional def test(){ def m_lv1_i1
= new Menu( name: ‘home‘, id: "m_lv1_i1" ).save flush: true }

 

grails-domain-id 无生成策略,由程序控制

标签:

原文地址:http://www.cnblogs.com/duwenlei/p/4233114.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!