我最近继承了一个 Grails 代码库,其中包含一个名为Name
(以及其他)的域类,属性first
和last
分别表示名称的开头和结尾部分。在编写使用该域的单元测试时,我遇到了一些问题,这些问题源于这些属性的名称与Grails中的first和last方法相同。现在,我可以通过重命名属性来解决问题,但我想知道 Grails 中是否有一种方法可以使用属性名称first
和last
.
也就是说,我收到的错误是No signature of method: com.example.Name.first() is applicable for argument types: () values: []
Possible solutions: first(), first(java.lang.String), first(java.util.Map), list(), list(java.util.Map), print(java.lang.Object)
Grails 尝试对nullable: true
属性应用约束时。
这里的来源Name
:
class Name {
String first
String middle
String last
static belongsTo = [person : Person]
static constraints = {
first(nullable:true)
middle(nullable:true)
last(nullable:true)
}
public static Name findOrCreate(String first, String middle, String last){
def name
name = Name.createCriteria().get{
and{
eq('first', first)
eq('middle', middle)
eq('last', last)
}
if(!name){
name = new Name()
name.first = first
name.middle = middle
name.last = last
}
return name
}
static mapping = {
cache true
}
}