Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
升级到 Grails 2.2 后,我得到了这个异常
班级:groovy.lang.MissingMethodException
groovy.lang.MissingMethodException
信息:
没有方法签名:静态 org.codehaus.groovy.runtime.InvokerHelper.getVersion() 适用于参数类型:() 值:[]
异常仅发生在 index.gsp 上 - 我怎样才能摆脱错误?
升级后,Grails 版本无法再使用org.codehaus.groovy.runtime.InvokerHelper.getVersion().
org.codehaus.groovy.runtime.InvokerHelper.getVersion()
打开 index.gsp 并将显示“Groovy version”的行更改为
<li>Groovy version: ${GroovySystem.getVersion()}</li>
摆脱错误消息。