class User {
String userName
static constraints = {
userName nullable:false
}
}
*** I tried the different combination of the following in the message.properties ***
User.userN
我正在尋找一種方法來驗證Grails中的IP地址通過約束。 是這樣的可能嗎? package example
class Ip {
String ip
static constraints = {
ip(unique: true, inetAddress: true)
}
}
我發現這個鏈接:http://grails.org/doc/2.2