Grails NumberFormatException on stylesheet - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T23:44:22Zhttp://stackoverflow.com/feeds/question/404484http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/404484/grails-numberformatexception-on-stylesheet1Grails NumberFormatException on stylesheetSteve Kuo2009-01-01T03:36:04Z2009-11-29T09:00:04Z
<p>Using Grails 1.1 beta2 and a JSP page. The JSP includes the CSS reference:</p>
<pre><code><link rel="stylesheet" type="text/css" href="styles.css">
</code></pre>
<p>When this line is included Grails pukes with the error:</p>
<pre><code>[7000] errors.GrailsExceptionResolver java.lang.NumberFormatException: For input string: "styles" org.codehaus.groovy.runtime.InvokerInvocationException: java.lang.NumberFormatException: For input string: "styles"
at org.codehaus.groovy.reflection.CachedMethod.invoke(CachedMethod.java:92)
at groovy.lang.MetaMethod.doMethodInvoke(MetaMethod.java:234)
at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:1061)
at groovy.lang.ExpandoMetaClass.invokeMethod(ExpandoMetaClass.java:893)
at groovy.lang.MetaClassImpl.invokeMethod(MetaClassImpl.java:892)
at groovy.lang.Closure.call(Closure.java:279)
at groovy.lang.Closure.call(Closure.java:274)
at org.codehaus.groovy.grails.web.servlet.mvc.SimpleGrailsControllerHelper.handleAction(Simp
leGrailsControllerHelper.java:340)
...
</code></pre>
<p>If I remove the stylesheet tag then the page loads error free (but no CSS). Any ideas why?</p>
http://stackoverflow.com/questions/404484/grails-numberformatexception-on-stylesheet/405340#4053400Answer by bochgoch for Grails NumberFormatException on stylesheetbochgoch2009-01-01T19:21:31Z2009-01-01T19:21:31Z<p>A few things to check:</p>
<p>Is that tag being loaded into the HTML HEAD?</p>
<p>Can the styles.css file be 'found'?</p>
<p>Play around with the format...some standards documents use this syntax:</p>
<p></p>
<p>(note no quotes around STYLESHEET)</p>