Groovlet + Tomcat: "unable to resolve class" when importing libraries - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T22:15:03Zhttp://stackoverflow.com/feeds/question/354559http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/354559/groovlet-tomcat-unable-to-resolve-class-when-importing-libraries1Groovlet + Tomcat: "unable to resolve class" when importing librariesRob Hruska2008-12-09T23:00:31Z2009-02-25T01:50:19Z
<p>I'm having some trouble running a groovy servlet (groovlet) in tomcat that imports a library class. When I don't import anything the groovlet works correctly, but if I do import something that I expect to be on the classpath (I can import the same class successfully in a regular servlet), I see the following error:</p>
<pre><code>groovy.util.ScriptException: Could not parse scriptName: /MyGroovlet.groovy
java.lang.RuntimeException: groovy.util.ScriptException: Could not parse scriptName: /MyGroovlet.groovy
at groovy.servlet.GroovyServlet$1.call(GroovyServlet.java:123)
...
Caused by: org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed, /MyGroovlet.groovy: 1: unable to resolve class com.mycompany.mypackage.MyLibraryClass
@ line 1, column 1.
</code></pre>
<p>The jar containing <code>MyLibraryClass</code> is in <code>shared/lib</code>, which is loaded by tomcat by the following in <code>catalina.properties</code>:</p>
<pre><code>shared.loader=...,${catalina.base}/shared/lib/*.jar,...
</code></pre>
<p>My groovlets are mapped as described in the <a href="http://groovy.codehaus.org/Groovlets" rel="nofollow">user guide</a> in my application's <code>web.xml</code>:</p>
<pre><code><servlet>
<servlet-name>GroovyServlet</servlet-name>
<servlet-class>groovy.servlet.GroovyServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>GroovyServlet</servlet-name>
<url-pattern>*.groovy</url-pattern>
</servlet-mapping>
</code></pre>
<p>And here's the code for the groovlet, <code>MyGroovlet.groovy</code>:</p>
<pre><code>import com.mycompany.mypackage.MyLibraryClass
MyLibraryClass.someStaticMethod()
</code></pre>
<p>My groovlet is deployed to <code>WEB-INF/groovy/MyGroovlet.groovy</code>, per the <a href="http://groovy.codehaus.org/api/groovy/servlet/GroovyServlet.html" rel="nofollow">GroovyServlet API</a>.</p>
<p>When I visit <code>http://localhost:8080/myapplication/MyGroovlet.groovy</code>, the error described previously is written to my application logs.</p>
<p>Is there some way that I need to explicitly declare the runtime classpath for GroovyServlet? I've tried moving the library jar to several places, including <code>WEB-INF/lib</code> and moving the actual <code>MyLibraryClass.class</code> file to <code>WEB-INF/classes</code>, but with no luck.</p>
http://stackoverflow.com/questions/354559/groovlet-tomcat-unable-to-resolve-class-when-importing-libraries/584443#5844431Answer by Martin for Groovlet + Tomcat: "unable to resolve class" when importing librariesMartin2009-02-25T01:50:19Z2009-02-25T01:50:19Z<p>I'm using Groovy plugin for Eclipse. Exporting Groovlets in a war file does also work.</p>
<p>When I do export my Groovlet-based application, this helpful plugin puts .groovy files in the /WEB-INF/classes directory (in the classpath). And it works when I deploy the war file in my Tomcat Server.</p>
<p>Hope that this helps.</p>
<p>Regards.</p>