我正在将一个应用程序从Grails转换为Java,并且需要在grails中找到相应的inList约束到spring / hibernate等价物。
static constraints = {
stringValue(inList:['testValue', 'testValue', 'testValue', 'testValue', 'test value', 'test&value'], nullable:false)
}
我不确定这种约束的hibernate / spring等价物是什么。
更新
我尝试使用枚举但我需要包含特殊字符,例如&和空格所以据我所知,只有字符串才能工作,因为我必须从数据库中提取这些值。