1

src/java我在 Grails 应用程序中为我想要使用的特定资源包创建了一个新包,例如src/java/resourcebundle/abc.properties. 当我从src/java. 我想在应用程序加载时加载这个文件。所以我试图将它添加到bootstrap.groovy

def init = { -> def myProperties =  ResourceBundle.getBundle("src/java/resourcebundle.abc")}.

我遇到了一个例外

Error executing bootstraps: Can't find bundle for base name src/java/resourcebundle.abc, locale en_US

关于如何在引导程序中加载资源包的任何建议?

4

1 回答 1

1

删除 src/java?还是使用 ClasspathResource?

于 2013-05-27T11:01:24.567 回答