Installing Grails with Apache Camel plugin - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T08:53:09Zhttp://stackoverflow.com/feeds/question/947330http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/947330/installing-grails-with-apache-camel-plugin0Installing Grails with Apache Camel pluginAbdullah Jibaly2009-06-03T21:21:48Z2009-09-14T15:56:17Z
<p>I'm having trouble getting the Apache Camel plugin to run in grails-1.1.1. Here's the steps I took:</p>
<pre><code>$ grails create-app camelapp
Welcome to Grails 1.1.1 - http://grails.org/
...
$ cd camelapp
$ grails run-app
...
Running Grails application..
Server running. Browse to http://localhost:8080/camelapp
$ grails install-plugin camel
...
Camel Route directory was created.
Plugin camel-0.2 installed
Plug-in provides the following new scripts:
------------------------------------------
grails create-route
$ grails run-app
...
[groovyc] org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed, Compile error during compilation with javac.
[groovyc] /Users/abdullah/.grails/1.1.1/projects/camelapp/plugins/camel-0.2/src/java/org/ix/grails/plugins/camel/ClosureProcessor.java:22: method does not override a method from its superclass
[groovyc] @Override
[groovyc] ^
...
: Compilation Failed
at org.codehaus.groovy.ant.Groovyc.compile(Groovyc.java:807)
at org.codehaus.groovy.ant.Groovyc.execute(Groovyc.java:540)
at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
at org.apache.tools.ant.Task.perform(Task.java:348)
at _GrailsCompile_groovy$_run_closure3_closure7.doCall(_GrailsCompile_groovy:102)
at _GrailsCompile_groovy$_run_closure3_closure7.doCall(_GrailsCompile_groovy)
at _GrailsSettings_groovy$_run_closure10.doCall(_GrailsSettings_groovy:274)
at _GrailsSettings_groovy$_run_closure10.call(_GrailsSettings_groovy)
at _GrailsCompile_groovy$_run_closure3.doCall(_GrailsCompile_groovy:89)
at _GrailsCompile_groovy$_run_closure2.doCall(_GrailsCompile_groovy:55)
at _GrailsPackage_groovy$_run_closure2_closure9.doCall(_GrailsPackage_groovy:79)
at _GrailsPackage_groovy$_run_closure2_closure9.doCall(_GrailsPackage_groovy)
at _GrailsSettings_groovy$_run_closure10.doCall(_GrailsSettings_groovy:274)
at _GrailsSettings_groovy$_run_closure10.call(_GrailsSettings_groovy)
at _GrailsPackage_groovy$_run_closure2.doCall(_GrailsPackage_groovy:78)
at RunApp$_run_closure1.doCall(RunApp.groovy:28)
at gant.Gant$_dispatch_closure4.doCall(Gant.groovy:324)
at gant.Gant$_dispatch_closure6.doCall(Gant.groovy:334)
at gant.Gant$_dispatch_closure6.doCall(Gant.groovy)
at gant.Gant.withBuildListeners(Gant.groovy:344)
at gant.Gant.this$2$withBuildListeners(Gant.groovy)
at gant.Gant$this$2$withBuildListeners.callCurrent(Unknown Source)
at gant.Gant.dispatch(Gant.groovy:334)
at gant.Gant.this$2$dispatch(Gant.groovy)
at gant.Gant.invokeMethod(Gant.groovy)
at gant.Gant.processTargets(Gant.groovy:495)
at gant.Gant.processTargets(Gant.groovy:480)
Caused by: org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed, Compile error during compilation with javac.
/Users/abdullah/.grails/1.1.1/projects/camelapp/plugins/camel-0.2/src/java/org/ix/grails/plugins/camel/ClosureProcessor.java:22: method does not override a method from its superclass
@Override
^
...
Compilation error: Compilation Failed
$ java -version
java version "1.6.0_07"
Java(TM) SE Runtime Environment (build 1.6.0_07-b06-153)
Java HotSpot(TM) 64-Bit Server VM (build 1.6.0_07-b06-57, mixed mode)
</code></pre>
http://stackoverflow.com/questions/947330/installing-grails-with-apache-camel-plugin/957217#9572170Answer by Miguel Ping for Installing Grails with Apache Camel pluginMiguel Ping2009-06-05T17:55:02Z2009-06-05T17:55:02Z<p>It seems that you are using JDK5, which do not allow <code>@Override</code> for interface implementations. You need to set JDK6 as the default JVM, JDK6 allows <code>@Override</code> for interface implementations.</p>
<p>You can also open a jira for the apache camel plugin owner in order to remove the annotation, although JDK5 will not last much longer.</p>
http://stackoverflow.com/questions/947330/installing-grails-with-apache-camel-plugin/1422445#14224450Answer by Alessios for Installing Grails with Apache Camel pluginAlessios2009-09-14T15:56:17Z2009-09-14T15:56:17Z<p>There's a <a href="http://jira.codehaus.org/browse/GRAILSPLUGINS-1253?page=com.atlassian.jira.plugin.system.issuetabpanels%3Aall-tabpanel" rel="nofollow">JIRA</a> on this problem. Try to just delete the @Override on the ClosureProcessor.java file. </p>