Grails域中的枚举

时间:2012-08-20 23:32:07

标签: grails groovy

我正在尝试在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}"
    }
}

1 个答案:

答案 0 :(得分:22)

看看这里......

Grails Enum Mapping

Grails GORM & Enums

你也可能会这样做。来自文档:

1)现在使用String值而不是序数值映射枚举类型。您可以通过更改映射来恢复旧行为,如下所示:

static mapping = {
    someEnum enumType:"ordinal"
}