If I use the url tag with double quotes:
@{"/public/images/blue.png"}
I get this error:
No route able to invoke action CONTROLLERNAME./public/images/blue.png was found
While everything works when using single quotes:
@{'/public/images/blue.png'}
Maybe I've been too much head into the code and there's something stupid I'm not seeing?
In the template tag documentation, nor in particular in the @
template tag documentation, I could not see a mention to different semantic meaning of single and double quotes...
In groovy double quotes are templetable strings
but still this does not seem to explain why it's failing, and if it is a known behaviour it should be written extremely loud in the doc - it took me quite a good deal of time to understand what the issue was!