0

我是 grails 的新手。我需要创建一个静态数组,需要在启动时填充某些项目。IE

public class kingUtil {

    public static String[] overlordArray = new String[]

    static def init() {
        overlordArray[0] = "foos"
        overlordArray[1] = "roh"
        overlordArray[2] = "dah"
    }
}

因此,我将实用程序 groovy 类放在源代码中,并打算从引导程序中调用 init()。但是,引导程序无法识别类名,就像它无法访问它一样。在 grails 中建立实现应用程序范围静态的最佳方法是什么。

4

0 回答 0