Grails NumberFormatException on stylesheet - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:44:22Z http://stackoverflow.com/feeds/question/404484 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/404484/grails-numberformatexception-on-stylesheet 1 Grails NumberFormatException on stylesheet Steve Kuo 2009-01-01T03:36:04Z 2009-11-29T09:00:04Z <p>Using Grails 1.1 beta2 and a JSP page. The JSP includes the CSS reference:</p> <pre><code>&lt;link rel="stylesheet" type="text/css" href="styles.css"&gt; </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#405340 0 Answer by bochgoch for Grails NumberFormatException on stylesheet bochgoch 2009-01-01T19:21:31Z 2009-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>