grails-domain-class

    6熱度

    2回答

    我有兩個域 class DomainA { String name Date dateCreated Date lastUpdated static transients = ['email'] static hasMany = [domainBs: DomainB] public String getEmail() {

    3熱度

    2回答

    我已經創建瞭如下所示的域類,它包含一個int和Integer屬性列表。生成的該域名類 class User { int UserId List<Integer> UserFriendsId static constraints = { } User() { this.UserId = 21 this.UserFrien

    3熱度

    2回答

    我想用hibernate類(Rate)替換grails中的domain class。因此,可以通過在src/java中創建一個文件RateConstraints.groovy來添加對hibernate類的限制,並且它對hibernate類的驗證正常工作。現在我需要使用此RateConstraints.groovy將暫態屬性添加到休眠類。 如: 考慮一個Java類中../src/java const

    3熱度

    1回答

    我Grails中2代表與MySQL 說A和B,我想在這裏實現 的情景是: (1)實例A可以具有B.的零點/一個/多個實例 (2)當被刪除實例的,那麼所有其相關的燒烤必須刪除。 (3)B的每個實例必須只與一個A的實例相關聯 (4)A知道關於B,而B不知道關於A. 條件號4不強制性的。 從上面的信息好像:單向之一,從一個多到B 目前我在做什麼是:(從here以幫助) class A { S

    2熱度

    1回答

    我想在我的領域類中寫公式,這有助於我創建標準。 class MyClass { //some fields Date appointmentTime String ddmmyy int year int month int day static transients = [ 'ddmmyy', 'year

    3熱度

    1回答

    此問題已部分回答here,但動態引用默認數據源仍然存在問題。 我正在研究一個內部應用程序,允許開發人員修改我們的多租戶應用程序之一的配置設置,並將這些設置從開發轉移到測試,暫存和生產。 其中每一個都有自己的數據源,Grails應用程序將安裝在每個開發人員的計算機上。 本地數據源將是默認的數據源,然後dataSource_testing,dataSource_staging等將引用相應的環境。 我可

    0熱度

    2回答

    我有2個項目的乙 ,他們有一個名爲「TABLE」領域類 一個是要插入「TABLE」的信息的B必須選擇它 我有這種配置在第一個項目的DataSource.groovy: enviroments{ development{ dataSource { url = "jdbc:h2:mem:devDb;MVCC=TRUE;LOCK_TIMEOUT=10000"

    3熱度

    1回答

    我是新來的grails,我創建了一個用戶域類和userprofile域類。而這些課程都是具有實用性的。 域類如下 class User { transient springSecurityService String username String password String email static hasOne = [profile:

    0熱度

    1回答

    對於這個簡單的問題感到抱歉。但是,我很困惑。 我想讀取數據庫中的所有字符串。 基本上我在我的控制器中有一個EmailSettings emailAddresses = new EmailSettings()對象,並且想要讀取保存在emailSettings Domain object中的所有電子郵件。這個類看起來像: class EmailSettings { String email

    2熱度

    1回答

    我正在開發Grails 2.3.7應用程序,我無法通過選擇框更改域屬性。每次我嘗試更改屬性並保存時,我都會得到一個HibernateException: identifier of an instance of Ethnicity was altered from X to Y。我不想改變種族的身份,我只是想把種族從一個變成另一個種族。 有幾件事情需要注意:我使用的是同一個控制器的動作來創建和更新