我正在尝试在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}"
}
}
答案 0 :(得分:22)
看看这里......
你也可能会这样做。来自文档:
1)现在使用String值而不是序数值映射枚举类型。您可以通过更改映射来恢复旧行为,如下所示:
static mapping = {
someEnum enumType:"ordinal"
}