我在Grails应用程序的src/java
下为我想要使用的特定资源包创建了一个新包,如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
有关如何在bootstrap中加载资源包的任何建议?
答案 0 :(得分:1)
删除src / java?或使用ClasspathResource?