groovy - MissingMethodException after upgrading to Grails 2.2 -


after upgrading grails 2.2, exception

class: groovy.lang.missingmethodexception

message:

no signature of method: static org.codehaus.groovy.runtime.invokerhelper.getversion() applicable argument types: () values: []

the exception occurs on index.gsp - how can rid of error?

after upgrade, grails version can no longer retrieved using org.codehaus.groovy.runtime.invokerhelper.getversion().

open index.gsp , change line says "groovy version"

<li>groovy version: ${groovysystem.getversion()}</li>

to rid of error message.


Comments

Popular posts from this blog

jquery - How can I dynamically add a browser tab? -

node.js - Getting the socket id,user id pair of a logged in user(s) -

keyboard - C++ GetAsyncKeyState alternative -