我是Spring MVC和Spring Roo的新手。
什么是字段枚举?
如何枚举所有允许的值?
是使用查找表还是检查约束实现的?
答案 0 :(得分:22)
Roo的field enum --fieldName --type
命令添加指定枚举类型的私有字段。
您可以手动创建枚举类型或使用roo命令:
roo> enum type --class ~.domain.Colors
roo> enum constant --name BLAU
roo> enum constant --name VERMELL
这会创建一个Colors枚举:
public Enum Colors {
BLAU, VERMELL
}
然后您可以使用then枚举类型来定义实体字段:
roo> entity --class ~.domain.Foo
roo> field enum --fieldName color --type ~.domain.Colors
这将定义Foo实体:
//Annotations and imports ommited for brevity
public class Foo{
private Colors color;
}
有关roo命令的完整参考,请参阅http://static.springsource.org/spring-roo/reference/html/command-index.html。
答案 1 :(得分:2)
如果要使用GWT或类似的东西,您可能希望将Colors类放在共享包中,因为客户端和服务器都使用枚举类。
所以你会这样做:enum type --class ~.shared.Colors