제약 조건을 통해 Grails에서 IP 주소의 유효성을 검사하는 방법을 찾고 있습니다.Grails에서 IP 주소 유효성 검사
이렇게 할 수 있나요? http://grails.org/doc/2.2.x/api/org/codehaus/groovy/grails/validation/routines/InetAddressValidator.html을하지만이를 구현하는 방법을 모른다 :
package example
class Ip {
String ip
static constraints = {
ip(unique: true, inetAddress: true)
}
}
이 나는이 링크를 발견했다.
덕분에 검색 솔루션을 발견! 하지만 API 확인 루틴을 사용하여 솔루션을 찾고 있습니다. – mbs
안녕하세요, Google 응답이 더 이상 온라인 상태가 아니라는 것을 발견했습니다. –