grails-2.4

    1熱度

    2回答

    我在mac os x v.10.9.5上使用grails安裝。 我曾經有grails 2.4.2安裝,它工作正常。 當我試圖安裝2.4.3版本(通過gvm和手動,通過解包存檔並設置PATH和GRAILS_HOME變量),安裝似乎沒問題,但是當從終端運行「grails」命令時,它沒有任何影響,只是類似於「清除」終端命令的行爲。沒有提供輸出或錯誤消息。 有沒有人有想法可能是錯誤的環境或安裝?或者至少在

    3熱度

    1回答

    我創建了一個新的grails應用程序,它帶有一個空的控制器,它呈現「hello」。 然後,我創建了一堆的單元測試只是驗證它打招呼,基本上是這樣×4: void "test something"() { when: controller.index() then: response.text == "hello" } 然而,在我的輸出,它似乎認爲有2次

    0熱度

    2回答

    這是請求映射表包含: '/', '/index', '/index.gsp', '/**/favicon.ico', '/assets/**', '/**/js/**', '/**/css/**', '/**/images/**', '/login', '/login.*', '/login/*', '/logout', '/logout.*', '/logout/*

    0熱度

    1回答

    我正在使用grails 2.4.4。當我將mongodb插件從3.0.1升級到最新的3.0.2時,它無法找到並安裝一個jar。它的投擲: | Error Resolve error obtaining dependencies: Failed to read artifact descriptor for org.grails:grails-datastore-gorm-plugin-suppor

    0熱度

    1回答

    我目前正在使用grails版本。 2.3.6並想升級到2.4.3。 我有依賴的插件。其中一些可用於grails插件庫,但不是全部。 taggable:1.1.0已發佈,但grails存儲庫仍顯示taggable:1.0.1。我需要剩餘的插件最新版本,以便我不會遇到編譯錯誤問題。 插件列表是。 plugins { compile ':mail:1.0', { excludes

    1熱度

    1回答

    我正在嘗試使用createCriteria()搜索具有特定角色的用戶,我有三個域類:User,Role和UserRole(它們來自SpringSecurity)。 class UserRole implements Serializable { User user Role role static constraints = { user nullba

    0熱度

    1回答

    我們有一個Grails 2.4.3應用(從2.3.8遷移)這樣一類: @Validateable class Foo { Integer noDefault; Integer withDefault = 1; static constraints = { noDefault(nullable:false) withDefault(nulla

    0熱度

    1回答

    我必須根據我在另一個下拉列表中選擇的值動態加載一組值。 在控制器I有以下代碼, def ajaxGetCities(params){ println params.id def userCustPlantDetails = utilitySummaryService.fetchUserCustPlantDetails('PHILL00') def data = [

    6熱度

    1回答

    我正在使用Traits使我的控制器乾燥。我想用Spock單元測試Trait類。這是我的樣品的性狀和斯波克測試案例分別爲: trait SomeTrait { public void checkSomething (Closure c){ // Do some operation c.call } } @TestMixin(GrailsUnitTes

    0熱度

    3回答

    我正在將2.3應用程序升級到2.4.4,並且我有幾個域使用類似於以下內容的列表字段,並且我收到如here所述的錯誤。 class Game { List score static hasMany = [ score: Integer ] } 我假設使用的是上述問題的真正原因,而是因爲錯誤消息不指向域我不能肯定。 這種類型的列表定義不是很好的grails實踐嗎? 我得到的