grails – Groovy:在静态范围内找到了表观变量xyz,但没有引用局部变量,静态字段或类.可能的原因:

grails – Groovy:在静态范围内找到了表观变量xyz,但没有引用局部变量,静态字段或类.可能的原因:,第1张

概述我在所有域类的 Spring Tool Suite中收到此“错误”.这不是一个错误,因为它编译得很好.但是它掩盖了真正的编译错误,我怎么能摆脱它呢?它们在同一个包中,所以我不需要导入,如果我添加导入它说它找不到类…… 所以下面的代码产生一个红色的x Groovy:Apparent variable ‘ExampleB’ was found in a static scope but doesn’t 我在所有域类的 Spring Tool Suite中收到此“错误”.这不是一个错误,因为它编译得很好.但是它掩盖了真正的编译错误,我怎么能摆脱它呢?它们在同一个包中,所以我不需要导入,如果我添加导入它说它找不到类……

所以下面的代码产生一个红色的x

Groovy:Apparent variable ‘ExampleB’ was found in a static scope but doesn’t refer to a local variable,static
fIEld or class. Possible causes:

package domain.com.so;class ExampleA {    static belongsTo  = [exampleB: ExampleB]    static constraints = {    }}

此代码产生一个简单的错误:

Groovy:Apparent variable ‘ExampleA’ was found in a static scope but doesn’t refer to a local variable,static fIEld
or class. Possible causes:

package domain.com.so;class ExampleB {    static hasMany  = [exampleAs: ExampleA]    static constraints = {    }}
解决方法 通常当STS抱怨这样的事情时,我会跑

grails clean

grails compile --refresh-dependencIEs
总结

以上是内存溢出为你收集整理的grails – Groovy:在静态范围内找到了表观变量xyz,但没有引用局部变量,静态字段或类.可能的原因:全部内容,希望文章能够帮你解决grails – Groovy:在静态范围内找到了表观变量xyz,但没有引用局部变量,静态字段或类.可能的原因:所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1228154.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存