【问题标题】:Enum in Grails DomainGrails 域中的枚举
【发布时间】:2012-08-20 23:32:06
【问题描述】:

我正在尝试在 Grails 2.1 域类中使用 enum。我正在通过grails generate-all <domain class> 命令生成控制器和视图,当我访问视图时,出现如下所示的错误。我在这里错过了什么?

错误

Failed to convert property value of type java.lang.String to required type 
com.domain.ActionEnum for property action; nested exception is 
java.lang.IllegalStateException: Cannot convert value of type 
[java.lang.String] to required type [com.domain.ActionEnum] for property action: 
no matching editors or conversion strategy found

枚举(在/src/groovy

package com.domain

enum ActionEnum  {
    PRE_REGISTER(0), PURCHASE(2)

    private final int val
    public ActionEnum(int val) {
        this.val = val
    }

    int value() { return value }
}

package com.domain

class Stat {
    ActionEnum action

    static mapping = {
        version false
    }
}   

查看

<g:select name="action" 
    from="${com.domain.ActionEnum?.values()}"
    keys="${com.domain.ActionEnum.values()*.name()}" required="" 
    value="${xyzInstance?.action?.name()}"/>



编辑

更改以下内容后出现错误Property action must be a valid number

查看

<g:select optionKey='id' name="action" 
from="${com.domain.ActionEnum?.values()}" 
required="" 
value="${xyzInstance?.action}"/>  // I tried simply putting a number here

枚举

package com.domain

enum ActionEnum  {
    PRE_REGISTER(0), PURCHASE(2)

    final int id
    public ActionEnum(int id) {
        this.id = id
    }

    int value() { return value }

    static ActionEnum byId(int id) {
        values().find { it.id == id }
    } 
}

package com.domain.site

class Stat {
    static belongsTo = Game;

    Game game
    Integer action

    static mapping = {
        version false
   }

    static constraints = {
        action inList: ActionEnum.values()*.id
    }

    String toString() {
        return "${action}"
    }
}

【问题讨论】:

标签: grails groovy


【解决方案1】:

看这里...

Grails Enum Mapping

Grails GORM & Enums

你也可能会遇到这个问题。来自文档:

1) Enum 类型现在使用它们的 String 值而不是序数值进行映射。您可以通过如下更改映射来恢复旧行为:

static mapping = {
    someEnum enumType:"ordinal"
}

【讨论】:

  • +1 我已经看过第二个链接,但没有看到第一个。多亏了你的帮助,我离得更近了。请参阅问题编辑,因为我现在似乎遇到了验证问题。谢谢!
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2011-04-14
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2012-12-17
相关资源
最近更新 更多