Why Grails see URLs without http:// (like www.google.com) as invalid? Only http://google.com and http://www.google.com are ok. Is there any way to fix that ?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

If you read RFC 1738 (Uniform Resource Locators), it is clear that the URL scheme (in your case, http://), is a full part of URLs. Scheme define the meaning of the rest of the URL, and thus, can't be omitted. For instance http://www.google.com is definitely not the same ressource as https://www.google.com, and you should be aware of that when you save a link.

So URL like www.google.com are not valid, and Grails is right when it rejects them.

Fixing that should be easy if you know you expect an http URL:

new Object(url: 'http://' + url).save()

should do the trick.

link|improve this answer
Thanks. I am using validations just with Command objects, not for Domain classes. – Bax Nov 3 '11 at 14:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.